Skip to content

Instantly share code, notes, and snippets.

@jashkenas
Created May 5, 2011 15:41
Show Gist options
  • Select an option

  • Save jashkenas/957272 to your computer and use it in GitHub Desktop.

Select an option

Save jashkenas/957272 to your computer and use it in GitHub Desktop.
Sidebar = Backbone.Model.extend
promptColor: ->
@set color: prompt "Please enter a CSS color:"
window.sidebar = new Sidebar
sidebar.bind 'change:color' (model, color) ->
$('#sidebar').css background: color
sidebar.set color: 'white'
sidebar.promptColor()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment