summaryrefslogtreecommitdiffstats
path: root/docs/stylesheets/tables.js
blob: e848f07dd022cee28440b4e4277727a528d6b53a (plain)
1
2
3
4
5
6
document$.subscribe(function() {
  var tables = document.querySelectorAll("article table")
  tables.forEach(function(table) {
    new Tablesort(table)
  })
})