diff --git a/index.html b/index.html index f92f938..fefee7d 100644 --- a/index.html +++ b/index.html @@ -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'