inline-expanding.js: don't expand larger than the window
This commit is contained in:
parent
92f9a4c5ba
commit
21cb95af28
@ -15,6 +15,8 @@ onready(function(){
|
|||||||
|
|
||||||
for(var i = 0; i < link.length; i++) {
|
for(var i = 0; i < link.length; i++) {
|
||||||
if(typeof link[i] == "object" && link[i].childNodes[0].src && link[i].className != 'file') {
|
if(typeof link[i] == "object" && link[i].childNodes[0].src && link[i].className != 'file') {
|
||||||
|
link[i].childNodes[0].style.maxWidth = '95%';
|
||||||
|
link[i].childNodes[0].style.maxHeight = '95%';
|
||||||
link[i].onclick = function(e) {
|
link[i].onclick = function(e) {
|
||||||
if(e.which == 2) {
|
if(e.which == 2) {
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user