10 lines
278 B
JavaScript
10 lines
278 B
JavaScript
/* Tri des tables
|
|
https://squidfunk.github.io/mkdocs-material/reference/data-tables/#column-alignment
|
|
*/
|
|
|
|
document$.subscribe(function() {
|
|
var tables = document.querySelectorAll("article table:not([class])")
|
|
tables.forEach(function(table) {
|
|
new Tablesort(table)
|
|
})
|
|
}) |