Skip to content

Instantly share code, notes, and snippets.

@thenickcox
Created December 22, 2014 15:18
Show Gist options
  • Save thenickcox/e01b64e2061a30ba2e4a to your computer and use it in GitHub Desktop.
Save thenickcox/e01b64e2061a30ba2e4a to your computer and use it in GitHub Desktop.
App.album = new App.Models.Album({ title: 'Bitches Brew'});
// child {cid: "c2", attributes: Object, _changing: false, _previousAttributes: Object, changed: Object…}
App.album.get('title');
// “Bitches Brew”
App.album.set({ title: 'Sketches of Spain' });
// child {cid: "c2", attributes: Object, _changing: false, _previousAttributes: Object, changed: Object…}
App.album.get('title');
// ”A New Title”
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment