mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
7 lines
184 B
JavaScript
7 lines
184 B
JavaScript
|
document$.subscribe(function() {
|
||
|
var tables = document.querySelectorAll("article table:not([class])")
|
||
|
tables.forEach(function(table) {
|
||
|
new Tablesort(table)
|
||
|
})
|
||
|
})
|
||
|
|