Files
gitea-pages/docs/javascripts/tablesort.js
armborst_f cce9edf8ef
All checks were successful
Build and Deploy Documentation / build-and-deploy (push) Successful in 27s
add better beamline overview and abbrevations
2026-02-18 22:21:38 +01:00

6 lines
171 B
JavaScript

document$.subscribe(function() {
var tables = document.querySelectorAll("article table:not([class])")
tables.forEach(function(table) {
new Tablesort(table)
})
})