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