Add link to individual state

main
Chandler Swift 2024-02-29 23:24:22 -06:00
parent b062accb68
commit c16925231e
Signed by: chandlerswift
GPG Key ID: A851D929D52FB93F
1 changed files with 7 additions and 0 deletions

View File

@ -36,6 +36,13 @@
await selectState(ss.value);
document.getElementById('game').style.display = 'block';
});
// Check if there's a parameter in the URL already
const state = (new URLSearchParams(window.location.search)).get('state');
if (state) {
ss.value = state;
document.getElementById('go-button').click();
}
})();
import { createApp } from 'https://unpkg.com/petite-vue?module'