Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion packages/ember-routing/lib/vendor/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,7 @@ define("router",
@private

This function is called when transitioning from one URL to
another to determine which handlers are not longer active,
another to determine which handlers are no longer active,
which handlers are newly active, and which handlers remain
active but have their context changed.

Expand Down Expand Up @@ -1003,6 +1003,9 @@ define("router",
finalizeTransition(transition, handlerInfos);
}

// currentHandlerInfos was updated in finalizeTransition
trigger(router, router.currentHandlerInfos, true, ['didTransition']);

if (router.didTransition) {
router.didTransition(handlerInfos);
}
Expand Down