mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-14 00:14:23 +02:00
22 lines
582 B
JavaScript
22 lines
582 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');
|
|
});
|
|
});
|
|
|
|
function wrap_overlib() {
|
|
var ret = overlib.apply(null,arguments);
|
|
$('div#overDiv img').removeAttr('width').removeAttr('height');
|
|
return ret;
|
|
} |