diff options
author | Bharat Mediratta <bharat@menalto.com> | 2013-02-23 01:09:30 -0500 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2013-02-23 01:09:30 -0500 |
commit | 9d6ed037bb5b346fba900c17ba57b34dae3b6fc8 (patch) | |
tree | 2caddad82bfa6a6ad5f45ea0199c2d0539278026 /modules/tag/helpers | |
parent | 42878556cf38bccfea2b9b38ab2c8dd90d1ebc88 (diff) | |
parent | f95159c0b886a2ff724d6fa9a9315460186b02ef (diff) |
Merge branch 'jquery_190'
Diffstat (limited to 'modules/tag/helpers')
-rw-r--r-- | modules/tag/helpers/tag_event.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/tag/helpers/tag_event.php b/modules/tag/helpers/tag_event.php index d62ae36e..08d5d53a 100644 --- a/modules/tag/helpers/tag_event.php +++ b/modules/tag/helpers/tag_event.php @@ -72,8 +72,7 @@ class tag_event_Core { $url = url::site("tags/autocomplete"); $form->script("") ->text("$('form input[name=tags]').ready(function() { - $('form input[name=tags]').gallery_autocomplete( - '$url', {max: 30, multiple: true, multipleSeparator: ',', cacheLength: 1}); + $('form input[name=tags]').gallery_autocomplete('$url', {multiple: true}); });"); $tag_names = array(); @@ -125,7 +124,7 @@ class tag_event_Core { ->text("$('input[name=tags]') .gallery_autocomplete( '$autocomplete_url', - {max: 30, multiple: true, multipleSeparator: ',', cacheLength: 1} + {multiple: true} ); $('input[name=tags]') .change(function (event) { |