Skip to content
This repository has been archived by the owner on May 23, 2018. It is now read-only.

Commit

Permalink
fix: wrong name of event variable in clickHandler
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtech-dobes committed Feb 5, 2016
1 parent 463d7d7 commit 77990d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/BaseLink.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class BaseLink extends Component {
}
}

let comboKey = event.metaKey || event.altKey || event.ctrlKey || event.shiftKey;
let comboKey = evt.metaKey || evt.altKey || evt.ctrlKey || evt.shiftKey;

if (evt.button === 0 && !comboKey) {
evt.preventDefault();
Expand Down

0 comments on commit 77990d6

Please sign in to comment.