1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2025-02-17 14:54:33 +01:00

Correct remove tag filtering problem

This commit is contained in:
Brice Maron 2012-09-02 22:09:12 +00:00
parent 228832d954
commit e75a0174a7
2 changed files with 2 additions and 1 deletions

View File

@ -17,7 +17,7 @@ $(document).ready(function() {
$('#tag_filter input').tagit({
allowSpaces: true,
availableTags: fullTags,
onTagRemoved: filterTagsChanged
onTagFinishRemoved: filterTagsChanged
}).tagit('option', 'onTagAdded', filterTagsChanged);
getBookmarks();

View File

@ -360,6 +360,7 @@
} else {
tag.remove();
}
this._trigger('onTagFinishRemoved', null, tag);
},
removeAll: function() {