mirror of
https://github.com/TGITS/fun-with-mkdocs.git
synced 2026-03-28 17:42:47 +01:00
6 lines
181 B
JavaScript
6 lines
181 B
JavaScript
document$.subscribe(function() {
|
|
var tables = document.querySelectorAll("article table:not([class])")
|
|
tables.forEach(function(table) {
|
|
new Tablesort(table)
|
|
})
|
|
}) |