#21238: Fixing taxonomy autocomplete after jQuery UI update

Modified admin-taxonomy-tags.js to fix js problem related to tagit.
 The calls to data() jquery selector in the autocomplete initialization code where not matching on the provided keys. The keys have been modified to resolve the issue.

Work Item: 21238
This commit is contained in:
bill_cooper
2015-03-20 15:40:26 +01:00
committed by Zoltán Lehóczky
parent 9f319e2a47
commit f93369ab07

View File

@@ -159,9 +159,9 @@
tagsChanged: onTagsChanged,
caseSensitive: false,
minLength: 0
}).data("tagit");
}).data("uiTagit");
$tagit.input.autocomplete().data("autocomplete")._renderItem = renderAutocompleteItem;
$tagit.input.autocomplete().data("uiAutocomplete")._renderItem = renderAutocompleteItem;
});