mirror of
https://github.com/tylernguyen/wiki.git
synced 2025-02-05 16:33:14 -06:00
6 lines
184 B
JavaScript
6 lines
184 B
JavaScript
document$.subscribe(function () {
|
|
var tables = document.querySelectorAll("article table:not([class])")
|
|
tables.forEach(function (table) {
|
|
new Tablesort(table)
|
|
})
|
|
})
|