Created
December 22, 2014 15:18
-
-
Save thenickcox/e01b64e2061a30ba2e4a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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