From 9bf6aaf4adcd4b4e5ff6e2b5ae6a239d52a1bddc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Tue, 24 Sep 2013 14:11:24 +0200 Subject: [PATCH] No ticket. Get rid of comma expression in curCSS. --- src/css/curCSS.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/css/curCSS.js b/src/css/curCSS.js index 46704cfe2..e09574530 100644 --- a/src/css/curCSS.js +++ b/src/css/curCSS.js @@ -18,7 +18,7 @@ if ( window.getComputedStyle ) { var width, minWidth, maxWidth, ret, style = elem.style; - computed = computed || getStyles( elem ), + computed = computed || getStyles( elem ); // getPropertyValue is only needed for .css('filter') in IE9, see #12537 ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined; -- 2.39.5