diff options
author | Aaron Parecki <aaron@parecki.com> | 2018-05-27 08:48:37 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2018-05-27 08:48:37 -0700 |
commit | 1c3b6f50df9c1106bd44dbb201f265f144c1fb3c (patch) | |
tree | fc3a6c917a29e5b6d91c23185a0475f4b701a067 /views/new-itinerary.php | |
parent | 4a0cb5a5b3f3a8e1e4dfd8665c8982a48e92f90a (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 'views/new-itinerary.php')
-rw-r--r-- | views/new-itinerary.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/new-itinerary.php b/views/new-itinerary.php index e7eab1c..f8c9b02 100644 --- a/views/new-itinerary.php +++ b/views/new-itinerary.php @@ -180,7 +180,7 @@ $(function(){ }); }); - var category = csv_to_array($("#note_category").val()); + var category = tokenfieldToArray("#note_category"); properties = { itinerary: itinerary |