diff --git a/modules/components/Link.js b/modules/components/Link.js index 8ff48d6b8b..bf4141ddd4 100644 --- a/modules/components/Link.js +++ b/modules/components/Link.js @@ -27,7 +27,7 @@ var RESERVED_PROPS = { * * * You could use the following component to link to that route: - * + * * * * In addition to params, links may pass along query string parameters @@ -134,7 +134,7 @@ function isLeftClick(event) { } function isModifiedEvent(event) { - return !!(event.metaKey || event.ctrlKey || event.shiftKey); + return !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey); } module.exports = Link;