mirror of
https://github.com/linuxserver/docker-documentation.git
synced 2026-02-19 18:14:15 +08: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);
|
|
});
|
|
});
|