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');
});
});