forked from leftypol/leftypol
middle click on images opens them normally
This commit is contained in:
parent
6ca99d189d
commit
833af50181
2 changed files with 9 additions and 3 deletions
5
templates/main.js
Normal file → Executable file
5
templates/main.js
Normal file → Executable 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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue