diff options
author | Mike Sherov <mike.sherov@gmail.com> | 2012-04-19 10:43:26 -0400 |
---|---|---|
committer | Rick Waldron waldron.rick@gmail.com <waldron.rick@gmail.com> | 2012-04-19 10:43:26 -0400 |
commit | 3e6f94c36046e927121e2b25174f1ecd2e45d65b (patch) | |
tree | 381be782fd4140405c30f1ab07e522283f879ad3 /src | |
parent | 6cf1542a8b823c6bdacf7e6e01dfcb58e9949ff4 (diff) | |
download | jquery-3e6f94c36046e927121e2b25174f1ecd2e45d65b.tar.gz jquery-3e6f94c36046e927121e2b25174f1ecd2e45d65b.zip |
Remove unnec. else condition
Diffstat (limited to 'src')
-rw-r--r-- | src/css.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 ); } }, |