Default behavior for Ctrl clicks

This commit is contained in:
Eduard Urbach 2018-04-02 07:50:30 +02:00
parent ab0c933b3d
commit 487695cbce

View File

@ -173,8 +173,8 @@ export default class Application {
let self = this
link.onclick = function(e) {
// Middle mouse button should have standard behaviour
if(e.which === 2) {
// Middle mouse button and Ctrl clicks should have standard behaviour
if(e.which === 2 || e.ctrlKey) {
return
}