Corban-Lee Jones cba99c17f3 changed index js load order
Before, the server options were loaded first, meaning other js functions couldnt execute until the discord api call was completed, now this is done last.
2024-04-28 15:40:35 +01:00

6 lines
133 B
JavaScript

$(document).ready(async function() {
initSubscriptionTable();
await loadSavedGuilds();
await loadServerOptions();
});