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 | |
| parent | a4796032f47d5b846c01f1d03cddb34a26cae46b (diff) | |
| download | vimium-9dcdfe5dff7923297fc73c7bdc19a9bde12748c3.tar.bz2 | |
Uppercase utils -> Utils
Diffstat (limited to 'background_scripts')
| -rw-r--r-- | background_scripts/completion.coffee | 2 | ||||
| -rw-r--r-- | background_scripts/settings.coffee | 2 | 
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] | 
