diff options
Diffstat (limited to 'views/event.php')
-rw-r--r-- | views/event.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/views/event.php b/views/event.php index 1a11681..a71ce79 100644 --- a/views/event.php +++ b/views/event.php @@ -38,7 +38,7 @@ <div class="form-group" style="margin-top: 18px;"> - <label for="note_category">Tags (comma-separated)</label> + <label for="note_category">Tags</label> <input type="text" id="note_category" value="" class="form-control"> </div> @@ -56,6 +56,11 @@ $("#start_date .timezone").val(tz_seconds_to_offset(d.getTimezoneOffset() * 60 * -1)); }); + $("#note_category").tokenfield({ + createTokensOnBlur: true, + beautify: true + }); + $("#btn_post").click(function(){ var event_start = $("#start_date .date").val()+"T"+$("#start_date .time").val()+$("#start_date .timezone").val(); |