Skip to content

Instantly share code, notes, and snippets.

@hhsnopek
Last active August 29, 2015 14:15
Show Gist options
  • Save hhsnopek/0b110da92c73a7c506c8 to your computer and use it in GitHub Desktop.
Save hhsnopek/0b110da92c73a7c506c8 to your computer and use it in GitHub Desktop.
class Settings
constructor: ->
@localStorage = window.localStorage
if @localStorage?
@localStorage =
repo_name: false,
desktop_notifications: true,
oauth_token: ''
repo_name: localStorage.repo_name
desktop_notifications: localStorage.desktop_notifications
oauth_token: localStorage.oauth_token
module.exports = Settings
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment