Browse Source

middle click on images opens them normally

pull/40/head
Savetheinternet 13 years ago
parent
commit
833af50181
  1. 7
      main.js
  2. 5
      templates/main.js

7
main.js

@ -136,7 +136,10 @@ function init()
link = document.getElementsByTagName('a');
for ( i in link ) {
if(typeof link[i] == "object" && link[i].childNodes[0].src) {
link[i].onclick = function() {
link[i].onclick = function(e) {
if(e.which == 2) {
return true;
}
if(!this.tag) {
this.tag = this.childNodes[0].src;
this.childNodes[0].src = this.href;
@ -165,5 +168,5 @@ var RecaptchaOptions = {
theme : 'clean'
};
window.onload = init;

5
templates/main.js

@ -136,7 +136,10 @@ function init()
link = document.getElementsByTagName('a');
for ( i in link ) {
if(typeof link[i] == "object" && link[i].childNodes[0].src) {
link[i].onclick = function() {
link[i].onclick = function(e) {
if(e.which == 2) {
return true;
}
if(!this.tag) {
this.tag = this.childNodes[0].src;
this.childNodes[0].src = this.href;

Loading…
Cancel
Save