Added fancy optimizations
Some checks are pending
ci / deploy (push) Waiting to run

This commit is contained in:
Stephan Hadan 2024-12-02 23:10:17 +01:00
parent 07329039cf
commit d0c7ea1ff7
3 changed files with 36 additions and 4 deletions

View file

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