mirror of
https://github.com/owncloud/bookmarks.git
synced 2025-03-10 10:29:20 +01:00
Merge pull request #261 from TtuxX/master
Restore broken tag selection functionality
This commit is contained in:
commit
8fcf165ed7
1
css/3rdparty/jquery.tagit.css
vendored
1
css/3rdparty/jquery.tagit.css
vendored
@ -3,6 +3,7 @@ ul.tagit {
|
|||||||
overflow: auto;
|
overflow: auto;
|
||||||
margin-left: inherit; /* usually we don't want the regular ul margins. */
|
margin-left: inherit; /* usually we don't want the regular ul margins. */
|
||||||
margin-right: inherit;
|
margin-right: inherit;
|
||||||
|
width: 91.5%;
|
||||||
}
|
}
|
||||||
ul.tagit li {
|
ul.tagit li {
|
||||||
display: block;
|
display: block;
|
||||||
|
@ -251,6 +251,7 @@ li:hover > .tags_actions > em { display : none; }
|
|||||||
background: none repeat scroll 0 0 #F8F8F8;
|
background: none repeat scroll 0 0 #F8F8F8;
|
||||||
}
|
}
|
||||||
#tag_filter .tagit {
|
#tag_filter .tagit {
|
||||||
|
display: inline-block;
|
||||||
margin: 0.3em;
|
margin: 0.3em;
|
||||||
}
|
}
|
||||||
#tag_filter ul.tagit > li.tagit-new {
|
#tag_filter ul.tagit > li.tagit-new {
|
||||||
|
4
js/3rdparty/tag-it.js
vendored
4
js/3rdparty/tag-it.js
vendored
@ -323,7 +323,7 @@
|
|||||||
this._tagInput.val('');
|
this._tagInput.val('');
|
||||||
|
|
||||||
// insert tag
|
// insert tag
|
||||||
this._tagInput.parent().before(tag);
|
this._tagInput.parent().after(tag);
|
||||||
},
|
},
|
||||||
removeTag: function (tag, animate) {
|
removeTag: function (tag, animate) {
|
||||||
if (typeof animate === 'undefined') {
|
if (typeof animate === 'undefined') {
|
||||||
@ -362,4 +362,4 @@
|
|||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user