mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-03-18 21:38:13 -07:00
* WebHost: save datatables state * WebHost: Fix DataTables local storage keys. Co-authored-by: recklesscoder <[email protected]>
11 lines
243 B
JavaScript
11 lines
243 B
JavaScript
window.addEventListener('load', () => {
|
|
let tables = $(".autodatatable").DataTable({
|
|
"paging": false,
|
|
"ordering": true,
|
|
"info": false,
|
|
"dom": "t",
|
|
"stateSave": true,
|
|
});
|
|
console.log(tables);
|
|
});
|