webtools/site/mental-arithmatic/scripts/welcome.js

14 lines
376 B
JavaScript
Raw Normal View History

2026-01-15 11:51:48 +00:00
import { Controller } from "https://unpkg.com/@hotwired/stimulus/dist/stimulus.js";
export class WelcomeController extends Controller {
startGame(ev) {
ev.preventDefault();
this.element.classList.add('hidden');
window.dispatchEvent(new CustomEvent("startGame"));
}
gameEnded(ev) {
this.element.classList.remove('hidden');
}
}