diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2013-11-16 12:25:21 +0100 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2013-11-16 12:25:21 +0100 |
commit | 43772f3e5bb531d917bec884bfbd0be196110fd8 (patch) | |
tree | d60d96a569eb47f901b8a800a8fc0f0f95e6c70e /ui/jquery.ui.effect-explode.js | |
parent | 0be76bbcfd7a2092aca1b4b01b90dab4e4fe00da (diff) | |
parent | 9fd0e86820dcea532d5357e0b814653746d62889 (diff) | |
download | jquery-ui-43772f3e5bb531d917bec884bfbd0be196110fd8.tar.gz jquery-ui-43772f3e5bb531d917bec884bfbd0be196110fd8.zip |
Merge branch 'master' into selectmenu
Diffstat (limited to 'ui/jquery.ui.effect-explode.js')
-rw-r--r-- | ui/jquery.ui.effect-explode.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/jquery.ui.effect-explode.js b/ui/jquery.ui.effect-explode.js index 296cf96ea..e81ad9be0 100644 --- a/ui/jquery.ui.effect-explode.js +++ b/ui/jquery.ui.effect-explode.js @@ -41,11 +41,11 @@ $.effects.effect.explode = function( o, done ) { } // clone the element for each row and cell. - for( i = 0; i < rows ; i++ ) { // ===> + for ( i = 0; i < rows ; i++ ) { // ===> top = offset.top + i * height; my = i - ( rows - 1 ) / 2 ; - for( j = 0; j < cells ; j++ ) { // ||| + for ( j = 0; j < cells ; j++ ) { // ||| left = offset.left + j * width; mx = j - ( cells - 1 ) / 2 ; |