Skip to content

Platform Specification and Diagrams

Note

document$.subscribe(function () {
  // (1)
  var tables = document.querySelectorAll(/* (2) */ 'article table');
  tables.forEach(function (table) {
    new Tablesort(table);
  });
});
  1. ...
  2. ...

Back to top