diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-04-02 15:55:50 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-04-02 15:55:50 -0400 |
commit | ccbfd45924d6ddebc7b2bb575a9c8997a3d9ec03 (patch) | |
tree | c826598d95c1b945677b9d375ff5ee80dab120eb /ui/jquery.effects.slide.js | |
parent | 3876c874e3f311d263aef9f99ed2780afa1d41d7 (diff) | |
download | jquery-ui-ccbfd45924d6ddebc7b2bb575a9c8997a3d9ec03.tar.gz jquery-ui-ccbfd45924d6ddebc7b2bb575a9c8997a3d9ec03.zip |
A few lint fixes.
Diffstat (limited to 'ui/jquery.effects.slide.js')
-rw-r--r-- | ui/jquery.effects.slide.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ui/jquery.effects.slide.js b/ui/jquery.effects.slide.js index e747b2e85..5c8eb2566 100644 --- a/ui/jquery.effects.slide.js +++ b/ui/jquery.effects.slide.js @@ -44,8 +44,8 @@ $.effects.effect.slide = function( o, done ) { // Animation animation[ ref ] = ( show ? ( positiveMotion ? "+=" : "-=") : - ( positiveMotion ? "-=" : "+=")) - + distance; + ( positiveMotion ? "-=" : "+=")) + + distance; // Animate el.animate( animation, { @@ -61,7 +61,6 @@ $.effects.effect.slide = function( o, done ) { done(); } }); - }; })(jQuery); |