aboutsummaryrefslogtreecommitdiffstats
path: root/ui/effect-size.js
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2015-03-18 15:39:12 +0100
committerJörn Zaefferer <joern.zaefferer@gmail.com>2015-03-18 15:42:55 +0100
commit868e8c70e391b5ba886edc93fdec28086a6a3fca (patch)
tree16bbe1c88854f12d094ca026d32a00fc9d832ff3 /ui/effect-size.js
parentc16a5e58f9e4c130d15e86898e62707c43877ab4 (diff)
downloadjquery-ui-868e8c70e391b5ba886edc93fdec28086a6a3fca.tar.gz
jquery-ui-868e8c70e391b5ba886edc93fdec28086a6a3fca.zip
Effects: Fix style issues in individual effects
Skipping ui/effect.js since embedded jquery-color has many issues. Closes gh-1510
Diffstat (limited to 'ui/effect-size.js')
-rw-r--r--ui/effect-size.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/ui/effect-size.js b/ui/effect-size.js
index 3be3984b6..16a2adac1 100644
--- a/ui/effect-size.js
+++ b/ui/effect-size.js
@@ -13,11 +13,11 @@
//>>docs: http://api.jqueryui.com/size-effect/
//>>demos: http://jqueryui.com/effect/
-(function( factory ) {
+( function( factory ) {
if ( typeof define === "function" && define.amd ) {
// AMD. Register as an anonymous module.
- define([
+ define( [
"jquery",
"./effect"
], factory );
@@ -26,7 +26,7 @@
// Browser globals
factory( jQuery );
}
-}(function( $ ) {
+}( function( $ ) {
return $.effects.define( "size", function( options, done ) {
@@ -109,8 +109,8 @@ return $.effects.define( "size", function( options, done ) {
// Animate the children if desired
if ( scale === "content" || scale === "both" ) {
- vProps = vProps.concat([ "marginTop", "marginBottom" ]).concat( cProps );
- hProps = hProps.concat([ "marginLeft", "marginRight" ]);
+ vProps = vProps.concat( [ "marginTop", "marginBottom" ] ).concat( cProps );
+ hProps = hProps.concat( [ "marginLeft", "marginRight" ] );
// Only animate children with width attributes specified
// TODO: is this right? should we include anything with css width specified as well
@@ -154,8 +154,8 @@ return $.effects.define( "size", function( options, done ) {
if ( restore ) {
$.effects.restoreStyle( child );
}
- });
- });
+ } );
+ } );
}
// Animate
@@ -183,8 +183,8 @@ return $.effects.define( "size", function( options, done ) {
done();
}
- });
+ } );
-});
+} );
-}));
+} ) );