diff --git a/js/html_actuator.js b/js/html_actuator.js index 94a8f35..fbef1e2 100644 --- a/js/html_actuator.js +++ b/js/html_actuator.js @@ -114,5 +114,7 @@ HTMLActuator.prototype.message = function (won) { }; HTMLActuator.prototype.clearMessage = function () { - this.messageContainer.classList.remove("game-won", "game-over"); + // IE only takes one value to remove at a time. + this.messageContainer.classList.remove("game-won"); + this.messageContainer.classList.remove("game-over"); };