You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently when a component triggers a block completion event, and a block an article, an article a page etc, the change events call back in the wrong order as the final parent relinquishes control of its change:_isComplete handler before the triggering element does.
So if a component completes, causing it's block to complete, causing it's article to complete and you're listening to the complete events, you'll get:
currently when a component triggers a block completion event, and a block an article, an article a page etc, the change events call back in the wrong order as the final parent relinquishes control of its change:_isComplete handler before the triggering element does.
So if a component completes, causing it's block to complete, causing it's article to complete and you're listening to the complete events, you'll get:
article completed
block completed
component completed
it should be:
component completed
block completed
article completed
The text was updated successfully, but these errors were encountered: