I know that Ember.js defers binding changes. I'm wondering if Ember.js maintains any order when it notifies bindings of changes?
here's a very contrived example:
{{#if App.backVisible}}
<img {{bindAttr src=App.selectedPerson.avatar}} />
{{else}}
name: {{App.selectedPerson.fullName}}
{{/if}}
then some place else I do:
App.set("selectedPerson", someOtherPerson)
App.set("backVisible", true)
Is there any guarantee that the src binding will be filled in before the backVisible property changes?