mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-25 16:08:14 +02:00
27 lines
622 B
JavaScript
27 lines
622 B
JavaScript
$(document).ready(function(){
|
|
|
|
$("img.lazy").load(lazyload_done).lazyload({
|
|
effect: "fadeIn",
|
|
threshold: 300,
|
|
placeholder: ""
|
|
});
|
|
|
|
|
|
$(document).ajaxStop(function() {
|
|
$("img.lazy").load(lazyload_done).lazyload({
|
|
effect: "fadeIn",
|
|
threshold: 300,
|
|
placeholder: ""
|
|
});
|
|
});
|
|
});
|
|
|
|
function wrap_overlib() {
|
|
var ret = overlib.apply(null,arguments);
|
|
$('div#overDiv img').removeAttr('width').removeAttr('height').removeClass('lazy');
|
|
return ret;
|
|
}
|
|
|
|
function lazyload_done() {
|
|
$(this).removeAttr('width').removeAttr('height').removeClass('lazy');
|
|
} |