1
0
mirror of synced 2024-11-26 06:46:04 +03:00

Reevaluate dropdownCss when positioning dropdown

This commit is contained in:
Kevin Chung 2012-08-23 15:28:24 -07:00
parent 0b859744cc
commit 22b32614ea

View File

@ -895,11 +895,11 @@
this.dropdown.removeClass("select2-drop-above"); this.dropdown.removeClass("select2-drop-above");
} }
css = { css = $.extend({
top:dropTop, top: dropTop,
left:offset.left, left: offset.left,
width:width width: width
}; }, evaluate(this.opts.dropdownCss));
this.dropdown.css(css); this.dropdown.css(css);
}, },
@ -979,7 +979,6 @@
this.dropdown.show(); this.dropdown.show();
this.positionDropdown(); this.positionDropdown();
this.dropdown.css(evaluate(this.opts.dropdownCss));
this.dropdown.addClass("select2-drop-active"); this.dropdown.addClass("select2-drop-active");
this.ensureHighlightVisible(); this.ensureHighlightVisible();