From: Mike Sherov Date: Thu, 19 Apr 2012 14:43:26 +0000 (-0400) Subject: Remove unnec. else condition X-Git-Tag: 1.8b1~197 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3e6f94c36046e927121e2b25174f1ecd2e45d65b;p=jquery.git Remove unnec. else condition --- diff --git a/src/css.js b/src/css.js index a4d31a62c..07abb631d 100644 --- a/src/css.js +++ b/src/css.js @@ -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 ); } },