autogpt2 / docs /_javascript /tablesort.js
seawolf2357's picture
Deploy from GitHub repository
3382f47 verified
raw
history blame contribute delete
183 Bytes
document$.subscribe(function () {
var tables = document.querySelectorAll("article table:not([class])")
tables.forEach(function (table) {
new Tablesort(table)
})
})