From 4c4f87b8ae094d81f41f426f1beb246a3680ff14 Mon Sep 17 00:00:00 2001 From: Ben Alpert Date: Sat, 26 Jul 2014 21:35:41 -0700 Subject: [PATCH] [fixed] alt click on Link should count as modified --- modules/components/Link.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;