Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@darkslategrey
Created April 14, 2014 19:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save darkslategrey/10676807 to your computer and use it in GitHub Desktop.
Save darkslategrey/10676807 to your computer and use it in GitHub Desktop.
var myobj = AnObjectClass.extend({
id: null,
title: null,
watched: false,
rating: 0,
titleAndRating: function() {
return this.get('title') + ' has a rating fo ' + this.get('rating');
}.property('title', 'rating')
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment