Created
November 5, 2015 00:10
-
-
Save gregtap/249e61e6cbb91f3dba0a 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
| // The other user we are chatting with. | |
| otherUser: function() { | |
| console.log('HELLO WORLD'); | |
| return this.get('store').peekRecord('user', 'other'); | |
| }.property(), | |
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.get('core.otherUser'); | |
| this.get('core.otherUser'); | |
| // shows HELLO WORLD once |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment