1
0
mirror of synced 2024-11-22 21:16:10 +03:00

Fixed 'width' and 'containerCss' incompatibility. fixes #828

This commit is contained in:
Igor Vaynberg 2013-02-08 09:40:47 -08:00
parent 69d4e0896d
commit 0a201b07a5

View File

@ -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);
}
}
});