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
var doc = DS.Model.extend({ | |
// relationships | |
metadata: DS.hasMany('metadatum',{ async: true }), | |
................... | |
var Metadatum = DS.Model.extend({ | |
// relationships | |
doc: DS.belongsTo('doc'), |
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
This was HUGELY helpful. | |
Seeing something odd. Walking down that line, | |
msg = inbox.get_item items[0].item_id | |
Works fine. I can see some attributes, such as: | |
msg.item_id |
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
/* night to day in 4s */ | |
/* only tested in Firefox 8 so far but should work in other | |
* browsers as well | |
*/ | |
body { | |
background: black; | |
margin: 100px; | |
transition: all 4s; |