Add link to individual state
This commit is contained in:
parent
b062accb68
commit
c16925231e
1 changed files with 7 additions and 0 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue