localStorage fallback

This commit is contained in:
Tim Petricola
2014-03-11 11:52:02 -04:00
parent fda0e8405f
commit d6da8d9925
3 changed files with 23 additions and 23 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ function GameManager(size, InputManager, Actuator, ScoreManager) {
this.size = size; // Size of the grid
this.inputManager = new InputManager;
this.scoreManager = new ScoreManager;
this.actuator = new Actuator(this.scoreManager.isSupported());
this.actuator = new Actuator;
this.startTiles = 2;