mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 04:07:36 +00:00
7 lines
157 B
JavaScript
7 lines
157 B
JavaScript
app.document$.subscribe(() => {
|
|
const tables = document.querySelectorAll('article table');
|
|
tables.forEach(table => {
|
|
new Tablesort(table);
|
|
});
|
|
});
|