X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/8dfcd9f98a316599cae7d94f56069c4ba79d2c93..e3be85e24011ce42b9c48e19a21b9e7faba72767:/foto/album.inc.php diff --git a/foto/album.inc.php b/foto/album.inc.php index 42061d7..7a3f917 100644 --- a/foto/album.inc.php +++ b/foto/album.inc.php @@ -74,7 +74,6 @@ function imgjustify() { targetRowHeight: 200, }; var layout = require('justified-layout')(ratios, config); - var thumbreplace = !/[?&]blur\b/.test(window.location.search); gallery.style.position = 'relative'; gallery.style.height = layout.containerHeight + 'px'; @@ -86,20 +85,6 @@ function imgjustify() { imgel.style.position = 'absolute'; imgel.style.top = layout.boxes[i].top + 'px'; imgel.style.left = layout.boxes[i].left + 'px'; - - if (thumbreplace) { - var thumbtarget = imgel.src.replace(/(\/thumb\/)\d+/, '$1'+layout.boxes[i].height) - if (imgel.complete) { - imgel.src = thumbtarget; - } - else if (thumbtarget != imgel.src) { - var loadthumb = new Image(); - loadthumb.src = thumbtarget; - loadthumb.onload = function() { - imgel.src = this.src; - }; - } - } })(); } };