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