diff --git a/docs/javascripts/tables.js b/docs/javascripts/tables.js new file mode 100644 index 00000000..5f21b4d2 --- /dev/null +++ b/docs/javascripts/tables.js @@ -0,0 +1,6 @@ +app.location$.subscribe(function() { + var tables = document.querySelectorAll("article table") + tables.forEach(function(table) { + new Tablesort(table) + }) +}) \ No newline at end of file