Skip to content

Instantly share code, notes, and snippets.

@ianpetzer
Created June 11, 2013 09:46
Show Gist options
  • Save ianpetzer/5755701 to your computer and use it in GitHub Desktop.
Save ianpetzer/5755701 to your computer and use it in GitHub Desktop.
App.Category = Ember.Object.extend({
name: '',
nameLowerCase: function() {
return this.get('name').toLowerCase();
}.property('name')
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment