diff --git a/js/html_actuator.js b/js/html_actuator.js
index 5562ce9c11abd4e5bf05bfff71f4603d4b6775ef..04a137b9a3f4eb16184bfc1e37449e796e398b1a 100644
--- a/js/html_actuator.js
+++ b/js/html_actuator.js
@@ -113,10 +113,6 @@ HTMLActuator.prototype.message = function (won) {
var type = won ? "game-won" : "game-over";
var message = won ? "You win!" : "Game over!";
- if (typeof ga !== "undefined") {
- ga("send", "event", "game", "end", type, this.score);
- }
-
this.messageContainer.classList.add(type);
this.messageContainer.getElementsByTagName("p")[0].textContent = message;
};