From a339096d6a9d0313c2184de0d626e2c7e127955b Mon Sep 17 00:00:00 2001 From: Richard Gibson Date: Tue, 15 Oct 2013 11:12:31 -0400 Subject: [PATCH] No ticket: Small curCSS size optimizations --- src/css/curCSS.js | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/css/curCSS.js b/src/css/curCSS.js index c30519d3d..abcc8cb7f 100644 --- a/src/css/curCSS.js +++ b/src/css/curCSS.js @@ -14,7 +14,9 @@ function curCSS( elem, name, computed ) { // Support: IE9 // getPropertyValue is only needed for .css('filter') in IE9, see #12537 - ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined; + if ( computed ) { + ret = computed.getPropertyValue( name ) || computed[ name ]; + } if ( computed ) { @@ -44,9 +46,11 @@ function curCSS( elem, name, computed ) { } } - // Support: IE - // IE returns zIndex value as an integer. - return ret === undefined ? ret : ret + ""; + return ret !== undefined ? + // Support: IE + // IE returns zIndex value as an integer. + ret + "" : + ret; } return curCSS; -- 2.39.5