mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-25 17:04:01 +00:00
6 lines
159 B
JavaScript
6 lines
159 B
JavaScript
document$.subscribe(function() {
|
|
var tables = document.querySelectorAll("article table")
|
|
tables.forEach(function(table) {
|
|
new Tablesort(table)
|
|
})
|
|
})
|