added a little animation for removed multiselect choices
This commit is contained in:
parent
0c4888c6ef
commit
69758f0b71
10
select2.js
10
select2.js
@ -1709,11 +1709,13 @@
|
|||||||
.bind("click dblclick", this.bind(function (e) {
|
.bind("click dblclick", this.bind(function (e) {
|
||||||
if (!this.enabled) return;
|
if (!this.enabled) return;
|
||||||
|
|
||||||
this.unselect($(e.target));
|
$(e.target).closest(".select2-search-choice").fadeOut('fast').animate({width: "hide"}, 50, this.bind(function(){
|
||||||
this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus");
|
this.unselect($(e.target));
|
||||||
|
this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus");
|
||||||
|
this.close();
|
||||||
|
this.focusSearch();
|
||||||
|
})).dequeue();
|
||||||
killEvent(e);
|
killEvent(e);
|
||||||
this.close();
|
|
||||||
this.focusSearch();
|
|
||||||
})).bind("focus", this.bind(function () {
|
})).bind("focus", this.bind(function () {
|
||||||
if (!this.enabled) return;
|
if (!this.enabled) return;
|
||||||
this.container.addClass("select2-container-active");
|
this.container.addClass("select2-container-active");
|
||||||
|
Loading…
Reference in New Issue
Block a user