You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 3, 2018. It is now read-only.
An option for restricting tags to the list of suggestions would be nice. I got it working with the following event handler, but something in the options to turn this on would be good.
eventTagTags.on('added', function (e, value) {
if (tagNamesList.indexOf(value.valueOf()) == -1){
eventTagTags.data('tag').remove(eventTagTags[0].value.split(",").length - 1);
}
});
An option for restricting tags to the list of suggestions would be nice. I got it working with the following event handler, but something in the options to turn this on would be good.