Skip to content
This repository has been archived by the owner on Feb 17, 2021. It is now read-only.

Commit

Permalink
undo the global/local callback reordering
Browse files Browse the repository at this point in the history
  • Loading branch information
Gordon Koo committed Apr 11, 2013
1 parent bc3b9a5 commit 226fc18
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions js/hopscotch-0.0.5.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,13 +228,13 @@
i,
len;

for (i=0, len=cbArr.length; i<len; ++i) {
this.invokeCallback(cbArr[i].cb);
}

if (stepCb) {
this.invokeCallback(stepCb);
}

for (i=0, len=cbArr.length; i<len; ++i) {
this.invokeCallback(cbArr[i].cb);
}
},

/**
Expand Down
2 changes: 1 addition & 1 deletion js/hopscotch-0.0.5.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 226fc18

Please sign in to comment.