diff options
| author | Phil Crosby | 2012-06-11 17:59:15 -0700 |
|---|---|---|
| committer | Phil Crosby | 2012-06-12 22:00:35 -0700 |
| commit | 9dcdfe5dff7923297fc73c7bdc19a9bde12748c3 (patch) | |
| tree | bc100cc25a2617566a042c27b2616453a369fb4f /background_scripts/settings.coffee | |
| parent | a4796032f47d5b846c01f1d03cddb34a26cae46b (diff) | |
| download | vimium-9dcdfe5dff7923297fc73c7bdc19a9bde12748c3.tar.bz2 | |
Uppercase utils -> Utils
Diffstat (limited to 'background_scripts/settings.coffee')
| -rw-r--r-- | background_scripts/settings.coffee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/background_scripts/settings.coffee b/background_scripts/settings.coffee index ba9d1831..3b80dba6 100644 --- a/background_scripts/settings.coffee +++ b/background_scripts/settings.coffee @@ -46,7 +46,7 @@ Settings = localStorage[key] = if (localStorage[key] == "true") then true else false else localStorage[key] = JSON.stringify(localStorage[key]) - this.set("settingsVersion", utils.getCurrentVersion()) + this.set("settingsVersion", Utils.getCurrentVersion()) get: (key) -> if (key of localStorage) then JSON.parse(localStorage[key]) else this.defaults[key] |
