mirror of
https://codeberg.org/VnPower/PixivFE
synced 2024-12-06 19:16:23 +01:00
7 lines
172 B
JavaScript
7 lines
172 B
JavaScript
document$.subscribe(function() {
|
|
var tables = document.querySelectorAll("article table:not([class])")
|
|
tables.forEach(function(table) {
|
|
new Tablesort(table)
|
|
})
|
|
})
|