Files
librenms-librenms/html/js/lazyload.js
2015-06-29 16:18:13 -04:00

24 lines
644 B
JavaScript

$(document).ready(function(){
$("img.lazy").lazyload({
effect: "fadeIn",
threshold: 300,
placeholder: "",
skip_invisible: false
}).removeClass("lazy").removeAttr('width').removeAttr('height');
$(document).ajaxStop(function() {
$("img.lazy").lazyload({
effect: "fadeIn",
threshold: 300,
placeholder: "",
skip_invisible: false
}).removeClass("lazy").removeAttr('width').removeAttr('height');
});
});
function wrap_overlib() {
var ret = overlib.apply(null,arguments);
$('div#overDiv img').removeAttr('width').removeAttr('height');
return ret;
}