Skip to content

Commit

Permalink
Fixes #22, missing fn param
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Schultz committed Mar 15, 2017
1 parent 5f82ca2 commit f66f655
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/zingtouch.js

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

2 changes: 1 addition & 1 deletion dist/zingtouch.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/zingtouch.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/zingtouch.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/core/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ let util = {
getPathIndex(path, element) {
let index = path.length;

path.forEach((obj) => {
path.forEach((obj, i) => {
if (obj === element) {
index = i;
}
Expand Down

0 comments on commit f66f655

Please sign in to comment.