mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-24 02:36:15 +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)
|
|
})
|
|
})
|