Skip to content

Commit f66f655

Browse files
author
Mike Schultz
committed
Fixes #22, missing fn param
1 parent 5f82ca2 commit f66f655

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

dist/zingtouch.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/zingtouch.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/zingtouch.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/zingtouch.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/core/util.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ let util = {
201201
getPathIndex(path, element) {
202202
let index = path.length;
203203

204-
path.forEach((obj) => {
204+
path.forEach((obj, i) => {
205205
if (obj === element) {
206206
index = i;
207207
}

0 commit comments

Comments
 (0)