When Stacy and I played a game with the 2-minute timer we found we were
done long before the prompt came up to ask if we were done.
const REVEAL_COUNTDOWN_MS = 1500; /* 1.5 seconds to reveal a tile */
const MIN_CENTER_TILES = 7; /* auto-deal to maintain this many */
const MIN_WORD_LENGTH = 4;
-const IDLE_TIMEOUT_MS = 120000; /* 2 minutes of inactivity before warning */
+const IDLE_TIMEOUT_MS = 60000; /* 1 minute of inactivity before warning */
const IDLE_COUNTDOWN_MS = 10000; /* 10 seconds to respond to warning */
class Anagrams extends Game {