(element)
| 416 | return this.functions[event].length; |
| 417 | } |
| 418 | setElements(element) { |
| 419 | const game = this.createElement("div"); |
| 420 | const elem = document.querySelector(element); |
| 421 | elem.innerHTML = ""; |
| 422 | elem.appendChild(game); |
| 423 | this.game = game; |
| 424 | |
| 425 | this.elements = { |
| 426 | main: this.game, |
| 427 | parent: elem |
| 428 | } |
| 429 | this.elements.parent.classList.add("ejs_parent"); |
| 430 | this.elements.parent.setAttribute("tabindex", -1); |
| 431 | } |
| 432 | // Start button |
| 433 | createStartButton() { |
| 434 | const button = this.createElement("div"); |
no test coverage detected