fixed minor errors in graph remove avgOnly

This commit is contained in:
daniel 2018-06-26 13:26:37 +02:00
parent b1b486143f
commit 998eacc630
1 changed files with 2 additions and 2 deletions

View File

@ -388,7 +388,7 @@ echo "</div>";
}); });
} }
var requestSparseGraph = function (moduleId, period, showEvents, width, height, title, showAlerts, avgOnly, date, unit, type_g) { var requestSparseGraph = function (moduleId, period, showEvents, width, height, title, showAlerts, date, unit, type_g) {
return requestGraph('sparse', { return requestGraph('sparse', {
page: 'include/ajax/graph.ajax', page: 'include/ajax/graph.ajax',
print_sparse_graph: 1, print_sparse_graph: 1,
@ -488,7 +488,7 @@ echo "</div>";
$container.html($errorMessage.html()); $container.html($errorMessage.html());
} }
requestSparseGraph(moduleId, period, showEvents, width, height, title, showAlerts, avgOnly, date, unit, type_g) requestSparseGraph(moduleId, period, showEvents, width, height, title, showAlerts, date, unit, type_g)
.done(handleSuccess) .done(handleSuccess)
.fail(handleError); .fail(handleError);
} }