Default behavior for Ctrl clicks
This commit is contained in:
parent
ab0c933b3d
commit
487695cbce
@ -173,8 +173,8 @@ export default class Application {
|
|||||||
let self = this
|
let self = this
|
||||||
|
|
||||||
link.onclick = function(e) {
|
link.onclick = function(e) {
|
||||||
// Middle mouse button should have standard behaviour
|
// Middle mouse button and Ctrl clicks should have standard behaviour
|
||||||
if(e.which === 2) {
|
if(e.which === 2 || e.ctrlKey) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user