Open damianthepichler opened 9 years ago
@damianthepichler I have the same issue here, only the first level is working. Have you found a solution?
Sorry for my question, issue solved at #361, you need an outlet for each child route.
I had a similar-sounding issue that I was able to resolve. My setup included three template files (e.g. "app.hbs", "app/list/index.hbs", and "app/list/detail.hbs"). Transitions between "index.hbs" and "detail.hbs" didn't work until I created a template file at "app/list.hbs" with the contents "{{liquid-outet}}". Interestingly, keeping "{{outlet}}" in "app.hbs" didn't break the transitioning.
There's an allusion that this step is needed in the "Transitions for nested routes" section of the documentation -- but it wasn't clear to me that I couldn't just put "{{liquid-outlet}} in "app.hbs" and have that directly wrap the "index.hbs" and "detail.hbs" templates.
I have two routes with a slide-transition between the sub-routes. But only the animation on the first route is working
The first example is working, but the second one not. If I put on the debug-mode I get this for the first example:
but this one for the second example
This is the output of the ember-tool for the first example:
and this is the output of the ember-tool for the second example:
So you can see that my route 'administration.appInstances.appInstance.index' gets converted to 'app-instances.app-instance.index', 'administration' is missing and 'appInstance' gets converted from camelCase to kebab-case.
As a workaround i get this code working for my second example:
I assume that it has something to do with the four levels of the route. Is it possible that the plugin does not supports routes with more than four levels?