mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
16 lines
434 B
JavaScript
16 lines
434 B
JavaScript
$(document).ready(function(){
|
|
|
|
$("img.lazy").lazyload({
|
|
effect: "fadeIn",
|
|
threshold: 300,
|
|
placeholder: ""
|
|
}).removeClass("lazy").removeAttr('width').removeAttr('height');
|
|
|
|
$(document).ajaxStop(function() {
|
|
$("img.lazy").lazyload({
|
|
effect: "fadeIn",
|
|
threshold: 300,
|
|
placeholder: ""
|
|
}).removeClass("lazy").removeAttr('width').removeAttr('height');
|
|
});
|
|
}); |