Skip to content

Instantly share code, notes, and snippets.

@rlivsey
Created June 16, 2014 21:11
Show Gist options
  • Save rlivsey/3adc433cd46ad1aeb1c7 to your computer and use it in GitHub Desktop.
Save rlivsey/3adc433cd46ad1aeb1c7 to your computer and use it in GitHub Desktop.
ThingController = Ember.ObjectController.extend
contentChanging: (->
@_contentChanging = true
).observesBefore("content")
contentChanged: (->
@_contentChanging = false
).observes("content")
titleChanged: (->
return if @_contentChanging
@send "detailsChanged"
).observes("title")
`export default ThingController`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment