This commit is contained in:
Aetherinox
2025-03-28 21:03:24 +00:00
parent 1a1ad6af0d
commit 97b8a6ea95
19 changed files with 9481 additions and 1107 deletions

6
javascripts/tablesort.js Normal file
View File

@@ -0,0 +1,6 @@
document$.subscribe(function() {
var tables = document.querySelectorAll("article table:not([class])")
tables.forEach(function(table) {
new Tablesort(table)
})
})