From 1c3b6f50df9c1106bd44dbb201f265f144c1fb3c Mon Sep 17 00:00:00 2001 From: Aaron Parecki Date: Sun, 27 May 2018 08:48:37 -0700 Subject: 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 --- public/js/script.js | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'public/js') diff --git a/public/js/script.js b/public/js/script.js index f6f3a48..57990ee 100644 --- a/public/js/script.js +++ b/public/js/script.js @@ -14,15 +14,10 @@ return num; } - function csv_to_array(val) { - if(val.length > 0) { - return val.split(/[, ]+/); - } else { - return []; - } + function tokenfieldToArray(sel) { + return $(sel).tokenfield("getTokens").map(function(t){ return t.value}); } - $(function(){ // Set the date from JS -- cgit v1.2.3