Fix win/over in local
This commit is contained in:
+4
-2
@@ -118,9 +118,11 @@ HTMLActuator.prototype.updateBestScore = function (bestScore) {
|
|||||||
|
|
||||||
HTMLActuator.prototype.message = function (won) {
|
HTMLActuator.prototype.message = function (won) {
|
||||||
var type = won ? "game-won" : "game-over";
|
var type = won ? "game-won" : "game-over";
|
||||||
var message = won ? "You win!" : "Game over!"
|
var message = won ? "You win!" : "Game over!";
|
||||||
|
|
||||||
if (ga) ga("send", "event", "game", "end", type, this.score);
|
if (typeof ga !== "undefined") {
|
||||||
|
ga("send", "event", "game", "end", type, this.score);
|
||||||
|
}
|
||||||
|
|
||||||
this.messageContainer.classList.add(type);
|
this.messageContainer.classList.add(type);
|
||||||
this.messageContainer.getElementsByTagName("p")[0].textContent = message;
|
this.messageContainer.getElementsByTagName("p")[0].textContent = message;
|
||||||
|
|||||||
Reference in New Issue
Block a user