This repository was archived by the owner on Oct 2, 2019. It is now read-only.
This repository was archived by the owner on Oct 2, 2019. It is now read-only.
blur is not supported for tagging, tags just disappear #894
Open
Description
I made a local fix like this:
ctrl.searchInput.on('blur', function(e) {
var data = ctrl.searchInput.val();
if (data && data.length > 0 && ctrl.taggingTokens.isActivated) {
var items = data.split(ctrl.taggingTokens.tokens[0]); // split by first token only
if (items && items.length > 0) {
angular.forEach(items, function (item) {
ctrl.select(item, true);
});
e.preventDefault();
e.stopPropagation();
}
}
});