Merge pull request #2537 from Alucardfh/scaleDeviceOverview

Use browser width to scale cpu and bandwidth graphs on device overview
This commit is contained in:
Paul Gear
2016-01-07 08:11:39 +10:00
3 changed files with 38 additions and 5 deletions
+7
View File
@@ -473,10 +473,17 @@ function generate_lazy_graph_tag($args) {
case 'height':
$h = $arg;
break;
case 'lazy_w':
$lazy_w = $arg;
break;
}
$urlargs[] = $key."=".urlencode($arg);
}
if(isset($lazy_w)) {
$w=$lazy_w;
}
if ($config['enable_lazy_load'] === true) {
return '<img class="lazy graphs" width="'.$w.'" height="'.$h.'" data-original="graph.php?' . implode('&amp;',$urlargs).'" border="0" />';
}