From 3e6f94c36046e927121e2b25174f1ecd2e45d65b Mon Sep 17 00:00:00 2001 From: Mike Sherov Date: Thu, 19 Apr 2012 10:43:26 -0400 Subject: [PATCH] Remove unnec. else condition --- src/css.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/css.js b/src/css.js index a4d31a62c4..07abb631d0 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 ); } },