Skip to content

Commit 03edcc3

Browse files
authored
Play nice with desktop keyboard modifiers (#1065)
* Fixes Ctrl+click and others Applies to #904 and post fix for PR #1062 Auto-merge
1 parent a7ea4c6 commit 03edcc3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

views/includes/scripts/tableTrLinkScript.html

+5
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@
2424
return;
2525
}
2626

27+
// Check if desktop keyboard modifier(s) present
28+
if (aEv.ctrlKey || aEv.shiftKey || aEv.altKey || aEv.metaKey) {
29+
return;
30+
}
31+
2732
// Stop propagation as soon as possible
2833
aEv.stopPropagation();
2934

0 commit comments

Comments
 (0)