Skip to content

Commit

Permalink
Missing element arg for idle scenario
Browse files Browse the repository at this point in the history
  • Loading branch information
snewcomer committed Dec 24, 2020
1 parent f7e5bfa commit 10f58f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function tryScrollRecursively(fn, scrollHash, element) {
fn.call(null, scrollHash.x, scrollHash.y);
} else {
ATTEMPTS++;
tryScrollRecursively(fn, scrollHash)
tryScrollRecursively(fn, scrollHash, element)
}
})
}
Expand Down

0 comments on commit 10f58f7

Please sign in to comment.