summaryrefslogtreecommitdiffstats
path: root/js/animate.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/animate.js')
-rw-r--r--js/animate.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/animate.js b/js/animate.js
index fa5c089..d896188 100644
--- a/js/animate.js
+++ b/js/animate.js
@@ -186,7 +186,7 @@ proto.shiftWrapCells = function( x ) {
};
proto._shiftCells = function( cells, gap, shift ) {
- for ( var i=0, len = cells.length; i < len; i++ ) {
+ for ( var i=0; i < cells.length; i++ ) {
var cell = cells[i];
var cellShift = gap > 0 ? shift : 0;
cell.wrapShift( cellShift );
@@ -198,7 +198,7 @@ proto._unshiftCells = function( cells ) {
if ( !cells || !cells.length ) {
return;
}
- for ( var i=0, len = cells.length; i < len; i++ ) {
+ for ( var i=0; i < cells.length; i++ ) {
cells[i].wrapShift( 0 );
}
};