diff --git a/DuckDuckGo Images Slideshow.user.js b/DuckDuckGo Images Slideshow.user.js index 92c8c52..bba0b90 100644 --- a/DuckDuckGo Images Slideshow.user.js +++ b/DuckDuckGo Images Slideshow.user.js @@ -100,7 +100,7 @@ lbimg.style.height = ''; lbimg.style.width = '100%' } - lbimg.src = allimages[idx].src; + lbimg.src = allimages[idx].attributes.getNamedItem('data-src').nodeValue; imgCounter.innerText = "Image " + idx + " / " + imgcount; timer = setTimeout(() => showImage(++idx), imageTime); } @@ -205,4 +205,4 @@ } return stopProp; }); -})(); \ No newline at end of file +})();