testing without img WxH attrs

This commit is contained in:
Travis Hegner
2015-06-29 15:39:29 -04:00
parent 0b97b9f2be
commit d39e66a14c

View File

@ -3,14 +3,16 @@ $(document).ready(function(){
$("img.lazy").lazyload({
effect: "fadeIn",
threshold: 300,
placeholder: ""
placeholder: "",
skip_invisible: false
}).removeClass("lazy");
$(document).ajaxStop(function() {
$("img.lazy").lazyload({
effect: "fadeIn",
threshold: 300,
placeholder: ""
placeholder: "",
skip_invisible: false
}).removeClass("lazy");
});
});