]> source.dussan.org Git - jquery.git/commitdiff
Remove unnec. else condition
authorMike Sherov <mike.sherov@gmail.com>
Thu, 19 Apr 2012 14:43:26 +0000 (10:43 -0400)
committerRick Waldron waldron.rick@gmail.com <waldron.rick@gmail.com>
Thu, 19 Apr 2012 14:43:26 +0000 (10:43 -0400)
src/css.js

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