Remove unnec. else condition

This commit is contained in:
Mike Sherov 2012-04-19 10:43:26 -04:00 committed by Rick Waldron waldron.rick@gmail.com
parent 6cf1542a8b
commit 3e6f94c360

View File

@ -167,7 +167,7 @@ jQuery.extend({
return ret; return ret;
// Otherwise, if a way to get the computed value exists, use that // Otherwise, if a way to get the computed value exists, use that
} else if ( curCSS ) { } else {
return curCSS( elem, name ); return curCSS( elem, name );
} }
}, },