mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-17 05:54:26 +01:00
6 lines
183 B
JavaScript
6 lines
183 B
JavaScript
document$.subscribe(function () {
|
|
var tables = document.querySelectorAll("article table:not([class])")
|
|
tables.forEach(function (table) {
|
|
new Tablesort(table)
|
|
})
|
|
}) |