mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
#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:

committed by
Zoltán Lehóczky

parent
9f319e2a47
commit
f93369ab07
@@ -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;
|
||||
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user