diff --git a/views/includes/scripts/tableTrLinkScript.html b/views/includes/scripts/tableTrLinkScript.html index c61c0cc63..f2bb60919 100644 --- a/views/includes/scripts/tableTrLinkScript.html +++ b/views/includes/scripts/tableTrLinkScript.html @@ -24,6 +24,11 @@ return; } + // Check if desktop keyboard modifier(s) present + if (aEv.ctrlKey || aEv.shiftKey || aEv.altKey || aEv.metaKey) { + return; + } + // Stop propagation as soon as possible aEv.stopPropagation();