Ensure the Try Again button actually disappears when selected in Internet Explorer

This commit is contained in:
Dave Risney
2014-03-11 22:59:47 -07:00
parent 29e4b85f32
commit 472e30cd35
+3 -1
View File
@@ -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");
};