From b18625ce4cc094371b302e0350964ac886fcd3e4 Mon Sep 17 00:00:00 2001 From: Travis Hegner Date: Mon, 29 Jun 2015 16:18:13 -0400 Subject: [PATCH] trying to skip_invisible: false again --- html/js/lazyload.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/html/js/lazyload.js b/html/js/lazyload.js index 400f36995..e3e95e75b 100644 --- a/html/js/lazyload.js +++ b/html/js/lazyload.js @@ -3,14 +3,16 @@ $(document).ready(function(){ $("img.lazy").lazyload({ effect: "fadeIn", threshold: 300, - placeholder: "" + placeholder: "", + skip_invisible: false }).removeClass("lazy").removeAttr('width').removeAttr('height'); $(document).ajaxStop(function() { $("img.lazy").lazyload({ effect: "fadeIn", threshold: 300, - placeholder: "" + placeholder: "", + skip_invisible: false }).removeClass("lazy").removeAttr('width').removeAttr('height'); }); });