anta/docs/stylesheets/tables.js

7 lines
159 B
JavaScript
Raw Normal View History

document$.subscribe(function() {
var tables = document.querySelectorAll("article table")
tables.forEach(function(table) {
new Tablesort(table)
})
})