mirror of
https://codeberg.org/fediverse/fep.git
synced 2026-08-05 19:55:46 +00:00
7 lines
178 B
JavaScript
7 lines
178 B
JavaScript
|
|
document$.subscribe(function () {
|
||
|
|
var tables = document.querySelectorAll("article table:not([class])");
|
||
|
|
tables.forEach(function (table) {
|
||
|
|
new Tablesort(table);
|
||
|
|
});
|
||
|
|
});
|