aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts
diff options
context:
space:
mode:
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]