diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2013-10-16 20:43:09 +0200 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2013-11-13 19:20:16 +0100 |
commit | 0e192979d0401c8cfe889b116fffc43cc85bb9fa (patch) | |
tree | 150f9ecb76b8c21abf69d1f5bbdf073e27639f3b /ui/jquery.ui.effect-explode.js | |
parent | 89ae7641b0cb7054d0a7ea8617ae27c31e1749b0 (diff) | |
download | jquery-ui-0e192979d0401c8cfe889b116fffc43cc85bb9fa.tar.gz jquery-ui-0e192979d0401c8cfe889b116fffc43cc85bb9fa.zip |
Fix various coding style issues
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 ; |