mkdocs sortable tables.js

This commit is contained in:
Ross Wightman 2020-08-05 16:57:13 -07:00
parent 1696499ce5
commit 1a15502fa4

View File

@ -0,0 +1,6 @@
app.location$.subscribe(function() {
var tables = document.querySelectorAll("article table")
tables.forEach(function(table) {
new Tablesort(table)
})
})