1
0
mirror of https://github.com/danog/2048.git synced 2024-11-26 19:34:44 +01:00

Merge pull request #158 from janschoenherr/patch-1

code cleanup
This commit is contained in:
Gabriele Cirulli 2014-04-16 22:05:13 +02:00
commit 6141e302b7

View File

@ -28,11 +28,7 @@ GameManager.prototype.keepPlaying = function () {
// Return true if the game is lost, or has won and the user hasn't kept playing
GameManager.prototype.isGameTerminated = function () {
if (this.over || (this.won && !this.keepPlaying)) {
return true;
} else {
return false;
}
return this.over || (this.won && !this.keepPlaying);
};
// Set up the game