1
0
mirror of https://codeberg.org/fediverse/fep.git synced 2026-08-09 14:05:53 +00:00
Files
fep/javascripts/tablesort.js
T
2025-11-01 07:42:28 +00:00

7 lines
178 B
JavaScript

document$.subscribe(function () {
var tables = document.querySelectorAll("article table:not([class])");
tables.forEach(function (table) {
new Tablesort(table);
});
});