dmyersturnbull/pocketutils

View on GitHub
docs/javascripts/tablesort.js

Summary

Maintainability
A
0 mins
Test Coverage
document$.subscribe(function () {
  var tables = document.querySelectorAll("article table:not([class])");
  tables.forEach(function (table) {
    new Tablesort(table);
  });
});