mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
fix javascript typo missing a ','. only hits some browsers (sigh)
git-svn-id: http://www.observium.org/svn/observer/trunk@2409 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
@@ -106,7 +106,7 @@ $(document).ready(function(){
|
||||
var data = [
|
||||
['Up', <?php echo($devices['up']); ?>],
|
||||
['Down', <?php echo($devices['down']); ?>],
|
||||
['Ignored', <?php echo($devices['ignored']); ?>]
|
||||
['Ignored', <?php echo($devices['ignored']); ?>],
|
||||
['Disabled', <?php echo($devices['disabled']); ?>]
|
||||
];
|
||||
var plot1 = jQuery.jqplot ('devices_chart', [data],
|
||||
|
Reference in New Issue
Block a user