Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wmarbut/5437992 to your computer and use it in GitHub Desktop.
Save wmarbut/5437992 to your computer and use it in GitHub Desktop.
Ember computed properties in coffeescript
Ember.Object.extend
other_property: 2
computed_property: (->
@get('other_property')*5
).property('other_property')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment