autogpt / docs /_javascript /tablesort.js
kakumusic's picture
Upload folder using huggingface_hub
b225a21 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)
})
})