mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
Fixed status charts erroring out if the site stats chart is disabled.
This commit is contained in:
parent
acc1caf646
commit
382eafa5bb
@ -354,14 +354,18 @@ $(document).ready(function () {
|
||||
}
|
||||
|
||||
// Resize the chart when viewing the tab (initial width is wrong due to chart being hidden)
|
||||
$('a[href="#site-stats"]').on('shown.bs.tab', function (e) {
|
||||
$('a[href="#site-stats"]').on('shown.bs.tab',
|
||||
function (e) {
|
||||
if (showVisitorStats) {
|
||||
visitChart.setSize($('#visitor-chart').width(), $('#visitor-chart').height());
|
||||
})
|
||||
}
|
||||
});
|
||||
|
||||
// Resize the chart when viewing the tab (initial width is wrong due to chart being hidden)
|
||||
$('a[href="#realtime-stats"]').on('shown.bs.tab', function (e) {
|
||||
$('a[href="#realtime-stats"]').on('shown.bs.tab',
|
||||
function(e) {
|
||||
cpuUsageChart.setSize($('#cpu-usage-chart').width(), $('#cpu-usage-chart').height());
|
||||
memUsageChart.setSize($('#mem-usage-chart').width(), $('#mem-usage-chart').height());
|
||||
networkUsageChart.setSize($('#network-usage-chart').width(), $('#network-usage-chart').height());
|
||||
})
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user