mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Disable page refresh on health sensors pages, autorefresh most tables (#9386)
* Disable page refresh on health sensors pages Refresh all bootgrid tables every 5 minutes * Update legacy_index.php * Update librenmsv1.blade.php
This commit is contained in:
committed by
Neil Lathwood
parent
518e5f06d3
commit
f439eb4f1d
@@ -290,3 +290,11 @@ function refresh_oxidized_node(device_hostname){
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
$(document).ready(function () {
|
||||
setInterval(function () {
|
||||
$('.bootgrid-table').each(function() {
|
||||
$(this).bootgrid('reload');
|
||||
});
|
||||
}, 300000);
|
||||
});
|
||||
|
Reference in New Issue
Block a user