aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts
diff options
context:
space:
mode:
authorPhil Crosby2012-06-11 17:59:15 -0700
committerPhil Crosby2012-06-12 22:00:35 -0700
commit9dcdfe5dff7923297fc73c7bdc19a9bde12748c3 (patch)
treebc100cc25a2617566a042c27b2616453a369fb4f /background_scripts
parenta4796032f47d5b846c01f1d03cddb34a26cae46b (diff)
downloadvimium-9dcdfe5dff7923297fc73c7bdc19a9bde12748c3.tar.bz2
Uppercase utils -> Utils
Diffstat (limited to 'background_scripts')
-rw-r--r--background_scripts/completion.coffee2
-rw-r--r--background_scripts/settings.coffee2
2 files changed, 2 insertions, 2 deletions
diff --git a/background_scripts/completion.coffee b/background_scripts/completion.coffee
index cc14c3a4..5d0f939a 100644
--- a/background_scripts/completion.coffee
+++ b/background_scripts/completion.coffee
@@ -30,7 +30,7 @@ class Suggestion
@html =
"<div class='topHalf'>
<span class='source'>#{@type}</span>
- <span class='title'>#{@highlightTerms(utils.escapeHtml(@title))}</span>
+ <span class='title'>#{@highlightTerms(Utils.escapeHtml(@title))}</span>
</div>
<div class='bottomHalf'>
<span class='url'>#{@shortenUrl(@highlightTerms(@url))}</span>
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]