Skip to content

Instantly share code, notes, and snippets.

@trek
Created October 6, 2012 20:27
Show Gist options
  • Save trek/3846017 to your computer and use it in GitHub Desktop.
Save trek/3846017 to your computer and use it in GitHub Desktop.
Em.Model = Em.Object.extend({
fullName: function(){
return this.get('firstName') + " " + this.get('lastName');
}.property('firstName', 'lastName', 'jsonLoadedData')
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment