提交 f943d2a7 编写于 作者: G Gabriele Cirulli

Merge pull request #42 from david-risney/fix-try-again-bug

Ensure the Try Again button actually disappears when selected in IE
...@@ -123,5 +123,7 @@ HTMLActuator.prototype.message = function (won) { ...@@ -123,5 +123,7 @@ HTMLActuator.prototype.message = function (won) {
}; };
HTMLActuator.prototype.clearMessage = function () { 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");
}; };
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册