feat(docs): add table sorting (#1258)

This commit is contained in:
Zethus Suen
2020-12-08 17:22:33 -05:00
committed by GitHub
parent 64f55c1b86
commit 5955d10a7f
4 changed files with 96 additions and 85 deletions
+6
View File
@@ -0,0 +1,6 @@
app.document$.subscribe(function() {
var tables = document.querySelectorAll("article table")
tables.forEach(function(table) {
new Tablesort(table)
})
})