Skip to content

Commit

Permalink
Fix ReferenceError in navigation.js
Browse files Browse the repository at this point in the history
Fixes #1714
  • Loading branch information
benlk committed May 23, 2019
1 parent 06cdb06 commit cb41b06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
bool = Modernizr.hasEvent('pointerdown');

while (i-- && !bool) {
if (hasEvent(domPrefixes[i] + 'pointerdown')) {
if (Modernizr.hasEvent(domPrefixes[i] + 'pointerdown')) {
bool = true;
}
}
Expand Down
2 changes: 1 addition & 1 deletion js/navigation.min.js

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

0 comments on commit cb41b06

Please sign in to comment.