summaryrefslogtreecommitdiff
path: root/modules/tag/helpers
diff options
context:
space:
mode:
Diffstat (limited to 'modules/tag/helpers')
-rw-r--r--modules/tag/helpers/tag_event.php5
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) {