Skip to content

Commit 446a368

Browse files
committed
fix(router): accidentally removed a import super call in the routers didTransition. fixes #266
1 parent dd54be9 commit 446a368

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

app/initializers/route-styles.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ import podNames from 'ember-component-css/pod-names';
44

55
Router.reopen({
66
didTransition(routes) {
7+
this._super(...arguments);
8+
79
const classes = [];
810
for (let i = 0; i < routes.length; i++) {
911
let route = routes[i];

0 commit comments

Comments
 (0)