mirror of
https://github.com/hotio/website.git
synced 2026-01-09 07:53:23 +08:00
7 lines
172 B
JavaScript
7 lines
172 B
JavaScript
document$.subscribe(function() {
|
|
var tables = document.querySelectorAll("article table:not([class])")
|
|
tables.forEach(function(table) {
|
|
new Tablesort(table)
|
|
})
|
|
})
|