6 lines
162 B
6 lines
162 B
5 years ago
|
app.location$.subscribe(function() {
|
||
|
var tables = document.querySelectorAll("article table")
|
||
|
tables.forEach(function(table) {
|
||
|
new Tablesort(table)
|
||
|
})
|
||
|
})
|