Browse Source

Added an indication that the images are loading when maximized in the same window.

pull/40/head
Savetheinternet 14 years ago
parent
commit
d1ad51a84d
  1. 8
      main.js

8
main.js

@ -6,7 +6,6 @@ function highlightReply(id)
if (divs[i].className.indexOf('post') != -1)
divs[i].className = divs[i].className.replace(/highlighted/, '');
}
if (id)
document.getElementById('reply_'+id).className += ' highlighted';
}
@ -39,13 +38,18 @@ function init()
link = document.getElementsByTagName('a');
for ( i in link ) {
if(typeof link[i] == "object" && link[i].childNodes[0].src) {
link[i].onclick = function() {
if(!this.tag) {
this.tag = this.childNodes[0].src;
this.childNodes[0].src = this.href;
this.childNodes[0].style.width = 'auto';
this.childNodes[0].style.height = 'auto';
this.childNodes[0].style.opacity = '0.4';
this.childNodes[0].style.filter = 'alpha(opacity=40)';
this.childNodes[0].onload = function() {
this.style.opacity = '1';
this.style.filter = '';
}
} else {
this.childNodes[0].src = this.tag;
this.childNodes[0].style.width = 'auto';

Loading…
Cancel
Save