From 545fa5847688ef9e63c26e1775bf333c77a8221c Mon Sep 17 00:00:00 2001 From: Miki B <43732645+cornonthecob267@users.noreply.github.com> Date: Mon, 1 Oct 2018 09:35:45 +1000 Subject: [PATCH] Update local_storage_manager.js --- js/local_storage_manager.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/local_storage_manager.js b/js/local_storage_manager.js index 7746ead..b1f7845 100644 --- a/js/local_storage_manager.js +++ b/js/local_storage_manager.js @@ -19,9 +19,9 @@ window.fakeStorage = { }; function LocalStorageManager() { - this.bestScoreKey = "bestScoreCupcakes"; - this.bestPointsKey = "bestPointsCupcakes"; - this.gameStateKey = "gameStateCupcakes"; + this.bestScoreKey = "bestScoreFashion"; + this.bestPointsKey = "bestPointsFashion"; + this.gameStateKey = "gameStateFashion"; var supported = this.localStorageSupported(); this.storage = supported ? window.localStorage : window.fakeStorage;