diff options
author | Aaron Parecki <aaron@parecki.com> | 2018-06-10 13:09:48 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2018-06-10 13:09:48 -0700 |
commit | 63655f119bf2f0c70d1b563ca69c88a4d0988fb7 (patch) | |
tree | a19aebd841967472a39c33008bd9765b96fde141 /public/editor-files | |
parent | bb0752a72692d03b61f1719dca2a7cdc2b3052cc (diff) | |
parent | 0994a07522ae0d7996f2fc9ea6d27aaef027934f (diff) |
Merge branch 'master' of github.com:aaronpk/Quill
Diffstat (limited to 'public/editor-files')
-rw-r--r-- | public/editor-files/editor.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/editor-files/editor.js b/public/editor-files/editor.js index 516e16c..fefbb47 100644 --- a/public/editor-files/editor.js +++ b/public/editor-files/editor.js @@ -72,7 +72,7 @@ $(function() { $('#publish-in-progress').removeClass('hidden'); $('#publish-fields').addClass('hidden'); - var category = $("#note_category").tokenfield("getTokens").map(function(t){ return t.value}); + var category = $("#post-tags").tokenfield("getTokens").map(function(t){ return t.value}); $.post('/editor/publish', { name: $("#post-name").val(), |