1
0
mirror of https://codeberg.org/fediverse/fep.git synced 2026-08-05 19:55:46 +00:00
Files
fep/scripts/docs/javascripts/tablesort.js
T

7 lines
178 B
JavaScript
Raw Normal View History

2025-11-01 08:40:20 +01:00
document$.subscribe(function () {
var tables = document.querySelectorAll("article table:not([class])");
tables.forEach(function (table) {
new Tablesort(table);
});
});