diff --git a/js/html_actuator.js b/js/html_actuator.js index 374a9ee..b05c477 100644 --- a/js/html_actuator.js +++ b/js/html_actuator.js @@ -135,7 +135,9 @@ 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"); }; HTMLActuator.prototype.scoreTweetButton = function () {