tablesort.js 172 B

1234567
  1. document$.subscribe(function() {
  2. var tables = document.querySelectorAll("article table:not([class])")
  3. tables.forEach(function(table) {
  4. new Tablesort(table)
  5. })
  6. })