File size: 183 Bytes
b225a21
 
 
 
 
 
1
2
3
4
5
6
document$.subscribe(function () {
    var tables = document.querySelectorAll("article table:not([class])")
    tables.forEach(function (table) {
        new Tablesort(table)
    })
})