diff --git a/4chan_x.coffee b/4chan_x.coffee index f068bead1..10ef9fedc 100644 --- a/4chan_x.coffee +++ b/4chan_x.coffee @@ -370,6 +370,7 @@ iframeLoad = -> recaptchaReload() imageClick = (e) -> + return if e.shiftKey or e.altKey or e.ctrlKey e.preventDefault() thumb = @firstChild if thumb.className is 'hide' diff --git a/4chan_x.js b/4chan_x.js index 44d962f9e..80f43bc49 100644 --- a/4chan_x.js +++ b/4chan_x.js @@ -475,6 +475,9 @@ }; imageClick = function(e) { var thumb; + if (e.shiftKey || e.altKey || e.ctrlKey) { + return; + } e.preventDefault(); thumb = this.firstChild; if (thumb.className === 'hide') {