Last active
August 29, 2015 14:13
-
-
Save rjfranco/7dbcf80f4c385800d4c3 to your computer and use it in GitHub Desktop.
Ember.js Error when updating properties
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
| Uncaught Error: Assertion Failed: An attribute binding was triggered when the element was not in the DOM | |
| ember.js?body=1:3903 | |
| Ember.assertember.js?body=1:7393 | |
| applyAttributeBindingsember.js?body=1:41697 | |
| merge.invokeObserverember.js?body=1:43838 | |
| CoreView.extend._wrapAsScheduled.stateCheckedFnember.js?body=1:849 | |
| Queue.invokeember.js?body=1:914 | |
| Queue.flushember.js?body=1:719 | |
| DeferredActionQueues.flushember.js?body=1:144 | |
| Backburner.endember.js?body=1:547 | |
| (anonymous function) |
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
| return _this.getAttendeeData(idents).then(function(data) { | |
| schedule_item.invitations = _this.processInvitations(schedule_item.invitees, data.attendee_list); | |
| return _this.get('model').setProperties(schedule_item); | |
| }); |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you sean <3