Files
Grinch-AP/WebHostLib/static/assets/hostGame.js
Zach 'Phar' Parks 0f7deb1d2a WebHost: Remove styleController.js and replace functionality with HTML/CSS. (#4852)
* ensure footer stays at bottom of page without JS

* Remove some other usages.
2025-04-08 23:46:46 -05:00

10 lines
335 B
JavaScript

window.addEventListener('load', () => {
document.getElementById('host-game-button').addEventListener('click', () => {
document.getElementById('file-input').click();
});
document.getElementById('file-input').addEventListener('change', () => {
document.getElementById('host-game-form').submit();
});
});