Platform Specification and Diagrams¶
Note
document$.subscribe(function () {
// (1)
var tables = document.querySelectorAll(/* (2) */ 'article table');
tables.forEach(function (table) {
new Tablesort(table);
});
});
- ...
- ...
Note
document$.subscribe(function () {
// (1)
var tables = document.querySelectorAll(/* (2) */ 'article table');
tables.forEach(function (table) {
new Tablesort(table);
});
});