mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Store browser height and width in session using ajax call
Modify html/includes/print-graphrow.inc.php to make use of the new Session variable
This commit is contained in:
@ -155,3 +155,7 @@ $(document).on("click", '.collapse-neighbors', function(event)
|
||||
continued.toggle();
|
||||
});
|
||||
|
||||
$(function() {
|
||||
$.post('ajax_setresolution.php', { width: $(window).width() , height:$(window).height() }, function(json) {
|
||||
},'json');
|
||||
});
|
||||
|
Reference in New Issue
Block a user