middle click on images opens them normally

This commit is contained in:
Savetheinternet 2011-06-23 22:54:27 +10:00
parent 6ca99d189d
commit 833af50181
2 changed files with 9 additions and 3 deletions

7
main.js Normal file → Executable file
View File

@ -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 Normal file → Executable file
View File

@ -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;