Skip to content

Instantly share code, notes, and snippets.

@mtford90
Created January 16, 2015 18:54
Show Gist options
  • Save mtford90/1fe025b9f3b8957107c1 to your computer and use it in GitHub Desktop.
Save mtford90/1fe025b9f3b8957107c1 to your computer and use it in GitHub Desktop.
Car = Collection.model('Car', {
id: 'id',
attributes: ['colour'],
properties: {
blah: {
get: function () {
return this.colour ? this.colour.toUpperCase() : this.colour;
},
// Workaround for chrome.
dependencies: ['colour']
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment