diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2018-07-07 17:20:08 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2018-07-07 17:20:08 -0400 |
commit | 5be9480128b2841647b204ba19ec9f45dac438f5 (patch) | |
tree | b83441962e485e70d239a3ad8b9bf6ae6d9d5db6 /app/assets/javascripts | |
parent | a4779bdb3baf50b477bbe166f7b1d873d75e506f (diff) | |
download | thoughts-5be9480128b2841647b204ba19ec9f45dac438f5.tar.gz thoughts-5be9480128b2841647b204ba19ec9f45dac438f5.tar.bz2 thoughts-5be9480128b2841647b204ba19ec9f45dac438f5.zip |
Added tag autocompletion
refs #2
Diffstat (limited to 'app/assets/javascripts')
-rw-r--r-- | app/assets/javascripts/admin/records.coffee | 3 | ||||
-rw-r--r-- | app/assets/javascripts/application.js | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/app/assets/javascripts/admin/records.coffee b/app/assets/javascripts/admin/records.coffee index 7a11ce1..27cdb78 100644 --- a/app/assets/javascripts/admin/records.coffee +++ b/app/assets/javascripts/admin/records.coffee | |||
@@ -25,3 +25,6 @@ $(document).on "turbolinks:load", -> | |||
25 | published_field_toggle($(this).prop("checked")) | 25 | published_field_toggle($(this).prop("checked")) |
26 | $("input[type=tags]").each -> | 26 | $("input[type=tags]").each -> |
27 | tagsInput(this) | 27 | tagsInput(this) |
28 | $(".tags-input input[type=text]").autocomplete({ | ||
29 | source: Routes.suggest_tags_path() | ||
30 | }) | ||
diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js index a81b3b2..58e8fb7 100644 --- a/app/assets/javascripts/application.js +++ b/app/assets/javascripts/application.js | |||
@@ -15,4 +15,6 @@ | |||
15 | //= require turbolinks | 15 | //= require turbolinks |
16 | //= require ckeditor/init | 16 | //= require ckeditor/init |
17 | //= require tags-input | 17 | //= require tags-input |
18 | //= require jquery-ui | ||
19 | //= require js-routes | ||
18 | //= require_tree ./admin | 20 | //= require_tree ./admin |