No ticket: Small curCSS size optimizations

This commit is contained in:
Richard Gibson 2013-10-15 11:12:31 -04:00
parent 5ce4b06c28
commit a339096d6a

View File

@ -14,7 +14,9 @@ function curCSS( elem, name, computed ) {
// Support: IE9 // Support: IE9
// getPropertyValue is only needed for .css('filter') in IE9, see #12537 // 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 ) { if ( computed ) {
@ -44,9 +46,11 @@ function curCSS( elem, name, computed ) {
} }
} }
// Support: IE return ret !== undefined ?
// IE returns zIndex value as an integer. // Support: IE
return ret === undefined ? ret : ret + ""; // IE returns zIndex value as an integer.
ret + "" :
ret;
} }
return curCSS; return curCSS;