From cf01ec6cb5c233a6c25872baeacab3b430e54c42 Mon Sep 17 00:00:00 2001 From: Igor Vaynberg Date: Thu, 16 Aug 2012 22:11:14 -0700 Subject: [PATCH] remove shrinking animation on choice remove because it causes jitter. fixes #326 --- select2.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/select2.js b/select2.js index 9abfb5b8..528c854e 100755 --- a/select2.js +++ b/select2.js @@ -2032,7 +2032,7 @@ .bind("click dblclick", this.bind(function (e) { if (!this.enabled) return; - $(e.target).closest(".select2-search-choice").fadeOut('fast').animate({width: "hide"}, 50, this.bind(function(){ + $(e.target).closest(".select2-search-choice").fadeOut('fast', this.bind(function(){ this.unselect($(e.target)); this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus"); this.close();