We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97c02f1 commit 4c4f87bCopy full SHA for 4c4f87b
modules/components/Link.js
@@ -27,7 +27,7 @@ var RESERVED_PROPS = {
27
* <Route name="showPost" path="/posts/:postId" handler={Post}/>
28
*
29
* You could use the following component to link to that route:
30
- *
+ *
31
* <Link to="showPost" postId="123"/>
32
33
* In addition to params, links may pass along query string parameters
@@ -134,7 +134,7 @@ function isLeftClick(event) {
134
}
135
136
function isModifiedEvent(event) {
137
- return !!(event.metaKey || event.ctrlKey || event.shiftKey);
+ return !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);
138
139
140
module.exports = Link;
0 commit comments