7 lines
160 B
JavaScript
7 lines
160 B
JavaScript
document$.subscribe(function() {
|
|
var tables = document.querySelectorAll("article table")
|
|
tables.forEach(function(table) {
|
|
new Tablesort(table)
|
|
})
|
|
})
|
|
|