diff options
| author | Phil Crosby | 2014-04-30 00:54:50 -0700 | 
|---|---|---|
| committer | Phil Crosby | 2014-04-30 00:54:50 -0700 | 
| commit | c79b35114270ada790a564e1794d042dadf07356 (patch) | |
| tree | 3d0f7fa03932829f54444823d5a32b905187c2ae /background_scripts/sync.coffee | |
| parent | 2b440edd7e27e4e6595fbf235a83883ad9af2539 (diff) | |
| download | vimium-c79b35114270ada790a564e1794d042dadf07356.tar.bz2 | |
Tweak a few comments
Diffstat (limited to 'background_scripts/sync.coffee')
| -rw-r--r-- | background_scripts/sync.coffee | 12 | 
1 files changed, 5 insertions, 7 deletions
diff --git a/background_scripts/sync.coffee b/background_scripts/sync.coffee index f1c5c0cc..93430856 100644 --- a/background_scripts/sync.coffee +++ b/background_scripts/sync.coffee @@ -20,15 +20,13 @@  root = exports ? window  root.Sync = Sync = -  # 19/4/14: -  # Leave logging statements in, but disable debugging. -  # We may need to come back to this, so removing logging now would be premature. -  # However, if users have problems, they are unlikely to notice and make sense of console logs on -  # background pages.  So disable it, by default. -  # For genuine errors, we call console.log directly. +  # April 19 2014: Leave logging statements in, but disable debugging. We may need to come back to this, so +  # removing logging now would be premature. However, if users report problems, they are unlikely to notice +  # and make sense of console logs on background pages. So disable it, by default. For genuine errors, we +  # call console.log directly.    debug: false    storage: chrome.storage.sync -  doNotSync: [ "settingsVersion", "previousVersion" ] +  doNotSync: ["settingsVersion", "previousVersion"]    # This is called in main.coffee.    init: ->  | 
