mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
22 lines
415 B
JavaScript
22 lines
415 B
JavaScript
$(document).ready(function(){
|
|
|
|
$("img.lazy").lazyload({
|
|
//effect: "fadeIn"
|
|
}).removeClass("lazy");
|
|
|
|
$(document).ajaxStop(function() {
|
|
$("img.lazy").lazyload({
|
|
//effect: "fadeIn"
|
|
}).removeClass("lazy");
|
|
});
|
|
|
|
});
|
|
|
|
function get_overlib(content) {
|
|
var ret = overlib(content, WRAP,HAUTO,VAUTO);
|
|
|
|
jQuery.event.trigger("ajaxStop");
|
|
console.log('test');
|
|
|
|
return ret;
|
|
} |