feat: Initial code push
All checks were successful
Build Docker / Build Main Image (push) Successful in 33s

This commit is contained in:
2023-11-17 00:06:02 +11:00
parent 94f298ad6d
commit 79b210c8a7
47 changed files with 10031 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
document.addEventListener('DOMContentLoaded', function() {
var charts = document.querySelectorAll('[data-bss-chart]');
for (var chart of charts) {
chart.chart = new Chart(chart, JSON.parse(chart.dataset.bssChart));
}
}, false);