tablesort.js 176 B

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