summaryrefslogtreecommitdiff
path: root/public/editor-files
diff options
context:
space:
mode:
authorAaron Parecki <aaron@parecki.com>2018-05-27 08:48:37 -0700
committerAaron Parecki <aaron@parecki.com>2018-05-27 08:48:37 -0700
commit1c3b6f50df9c1106bd44dbb201f265f144c1fb3c (patch)
treefc3a6c917a29e5b6d91c23185a0475f4b701a067 /public/editor-files
parent4a0cb5a5b3f3a8e1e4dfd8665c8982a48e92f90a (diff)
split tags using tokenfield instead of comma-separated
this allows tag values to contain spaces, which is up to your own micropub server to handle appropriately. closes #95 and replaces #96
Diffstat (limited to 'public/editor-files')
-rw-r--r--public/editor-files/editor.js10
1 files changed, 1 insertions, 9 deletions
diff --git a/public/editor-files/editor.js b/public/editor-files/editor.js
index 158b34f..06dc3e1 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 = csv_to_array($("#post-tags").tokenfield('getTokensList'));
+ var category = $("#note_category").tokenfield("getTokens").map(function(t){ return t.value});
$.post('/editor/publish', {
name: $("#post-name").val(),
@@ -149,14 +149,6 @@ function reset_page() {
return localforage.setItem('currentdraft', {});
}
-function csv_to_array(val) {
- if(val.length > 0) {
- return val.split(/[, ]+/);
- } else {
- return [];
- }
-}
-
/* ************************************************ */
/* autosave loop */
var autosaveTimeout = false;