diff --git a/html/js/lazyload.js b/html/js/lazyload.js
index 8cbdb6e9e..9192d4783 100644
--- a/html/js/lazyload.js
+++ b/html/js/lazyload.js
@@ -1,16 +1,16 @@
$(document).ready(function(){
- /*
$("img.lazy").lazyload({
effect: "fadeIn",
- threshold: 200
+ threshold: 300,
+ placeholder: ""
}).removeClass("lazy");
$(document).ajaxStop(function() {
$("img.lazy").lazyload({
effect: "fadeIn",
- threshold: 200
+ threshold: 300,
+ placeholder: ""
}).removeClass("lazy");
});
-*/
});
\ No newline at end of file