All checks were successful
Build and Deploy Documentation / build-and-deploy (push) Successful in 27s
6 lines
171 B
JavaScript
6 lines
171 B
JavaScript
document$.subscribe(function() {
|
|
var tables = document.querySelectorAll("article table:not([class])")
|
|
tables.forEach(function(table) {
|
|
new Tablesort(table)
|
|
})
|
|
}) |