Skip to content

Commit a8f58be

Browse files
matthewmuellerarunoda
authored andcommitted
fix link for environments without synthetic events (like preact/the browser) (vercel#393)
1 parent 204d335 commit a8f58be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/link.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default class Link extends Component {
1212

1313
linkClicked (e) {
1414
if (e.target.nodeName === 'A' &&
15-
(e.metaKey || e.ctrlKey || e.shiftKey || e.nativeEvent.which === 2)) {
15+
(e.metaKey || e.ctrlKey || e.shiftKey || (e.nativeEvent && e.nativeEvent.which === 2))) {
1616
// ignore click for new tab / new window behavior
1717
return
1818
}

0 commit comments

Comments
 (0)