stephan.hadan.de/docs/javascripts/tablesort.js
Stephan Hadan d0c7ea1ff7
Some checks are pending
ci / deploy (push) Waiting to run
Added fancy optimizations
2024-12-02 23:10:17 +01:00

6 lines
No EOL
181 B
JavaScript

document$.subscribe(function() {
var tables = document.querySelectorAll("article table:not([class])")
tables.forEach(function(table) {
new Tablesort(table)
})
})