Initial commit

This commit is contained in:
kimcc
2020-02-02 11:13:02 -06:00
commit 53f2ace0f4
138 changed files with 2178 additions and 0 deletions

13
assets/js/main.js Normal file
View File

@@ -0,0 +1,13 @@
window.onload = wrapTable();
// Wrap tables in a div so that they scroll responsively.
function wrapTable() {
const tables = document.querySelectorAll('table');
tables.forEach((table) => {
const tableWrapper = document.createElement('div');
tableWrapper.className = 'table-wrapper';
table.parentElement.replaceChild(tableWrapper, table);
tableWrapper.appendChild(table);
});
};