()
| 1 | function HTMLActuator() { |
| 2 | this.tileContainer = document.querySelector(".tile-container"); |
| 3 | this.scoreContainer = document.querySelector(".score-container"); |
| 4 | this.bestContainer = document.querySelector(".best-container"); |
| 5 | this.messageContainer = document.querySelector(".game-message"); |
| 6 | |
| 7 | this.score = 0; |
| 8 | } |
| 9 | |
| 10 | HTMLActuator.prototype.actuate = function (grid, metadata) { |
| 11 | var self = this; |
nothing calls this directly
no outgoing calls
no test coverage detected