From 0a201b07a5273d8717c6038bb737b4a63e0ac64f Mon Sep 17 00:00:00 2001 From: Igor Vaynberg Date: Fri, 8 Feb 2013 09:40:47 -0800 Subject: [PATCH] Fixed 'width' and 'containerCss' incompatibility. fixes #828 --- select2.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/select2.js b/select2.js index 1908d493..4dfde88e 100644 --- a/select2.js +++ b/select2.js @@ -1470,7 +1470,7 @@ the specific language governing permissions and limitations under the Apache Lic var width = resolveContainerWidth.call(this); if (width !== null) { - this.container.css({"style": "width: "+width}); + this.container.css("width", width); } } });