Add link to individual state
This commit is contained in:
parent
b062accb68
commit
c16925231e
|
@ -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…
Reference in a new issue