]> source.dussan.org Git - jquery-ui.git/commitdiff
Effects: Fix line length issues
authorAlexander Schmitz <arschmitz@gmail.com>
Thu, 31 Mar 2016 04:30:21 +0000 (00:30 -0400)
committerScott González <scott.gonzalez@gmail.com>
Wed, 13 Apr 2016 15:32:04 +0000 (11:32 -0400)
Ref gh-1690

ui/effects/effect-drop.js
ui/effects/effect-scale.js
ui/effects/effect-shake.js
ui/effects/effect-slide.js

index 059fd54ca8944633d68c1a68524d71fd4d3bbe97..c7e3d7a6ebd4c09a137839b2659e738491795d4d 100644 (file)
@@ -45,7 +45,8 @@ return $.effects.define( "drop", "hide", function( options, done ) {
 
        $.effects.createPlaceholder( element );
 
-       distance = options.distance || element[ ref === "top" ? "outerHeight" : "outerWidth" ]( true ) / 2;
+       distance = options.distance ||
+               element[ ref === "top" ? "outerHeight" : "outerWidth" ]( true ) / 2;
 
        animation[ ref ] = motion + distance;
 
index 9e254b27eb6c68ab5a865d008bae473b3af58735..9379f88c7c8ac5117fed28ef4778e7cea50cac59 100644 (file)
@@ -9,7 +9,7 @@
 
 //>>label: Scale Effect
 //>>group: Effects
-//>>description: Grows or shrinks an element and its content. Restores an element to its original size.
+//>>description: Grows or shrinks an element and its content.
 //>>docs: http://api.jqueryui.com/scale-effect/
 //>>demos: http://jqueryui.com/effect/
 
index ada249aec08170fa94ce4af8e804374362e491f0..596aa12ae4c773b01e9ddd1e8fda4e4be7d31710 100644 (file)
@@ -58,7 +58,9 @@ return $.effects.define( "shake", function( options, done ) {
 
        // Shakes
        for ( ; i < times; i++ ) {
-               element.animate( animation1, speed, options.easing ).animate( animation2, speed, options.easing );
+               element
+                       .animate( animation1, speed, options.easing )
+                       .animate( animation2, speed, options.easing );
        }
 
        element
index 12e8c9ca875f03cec5406c8bbe15282bf47eb28b..3ba7a2edc968b7633f0f352777ac877c2ae655b3 100644 (file)
@@ -42,7 +42,8 @@ return $.effects.define( "slide", "show", function( options, done ) {
                direction = options.direction || "left",
                ref = ( direction === "up" || direction === "down" ) ? "top" : "left",
                positiveMotion = ( direction === "up" || direction === "left" ),
-               distance = options.distance || element[ ref === "top" ? "outerHeight" : "outerWidth" ]( true ),
+               distance = options.distance ||
+                       element[ ref === "top" ? "outerHeight" : "outerWidth" ]( true ),
                animation = {};
 
        $.effects.createPlaceholder( element );