Skip to content

Commit

Permalink
Ensure i is set to -1, to stop thaw. version #
Browse files Browse the repository at this point in the history
  • Loading branch information
robertleeplummerjr committed Nov 19, 2014
1 parent 6e02d50 commit b00f1d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "thaw.js",
"main": "thaw.js",
"version": "1.1.3",
"version": "1.1.4",
"homepage": "https://github.com/robertleeplummerjr/thaw.js",
"authors": [
"Robert Plummer <[email protected]> (http://visop-dev.com)"
Expand Down
4 changes: 2 additions & 2 deletions thaw.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ var Thaw = (function(window) {
thawing = true;
done.call(items[i]);
thawing = false;
self.i = -1;
}

self.i = -1;
clearTimeout(timeout);
return;
}
Expand Down Expand Up @@ -170,9 +170,9 @@ var Thaw = (function(window) {
thawing = true;
done.call(items[i]);
thawing = false;
i = -1;
}

i = -1;
clearTimeout(timeout);
return;
}
Expand Down

0 comments on commit b00f1d7

Please sign in to comment.