erikringsmuth / app-router

Router for Web Components
https://erikringsmuth.github.io/app-router/
MIT License
610 stars 83 forks source link

app-router inside core-drawer panel doesnt apply transitions #91

Open oscarnevarezleal opened 9 years ago

oscarnevarezleal commented 9 years ago

When I place app-router inside core-drawer-panel as its main content the animations/transitions of core-animated-pages doesn´t seem to work.

When I pull out app-router and put it on the same part as root level (body) works just fine.

\ this doesn´t animate **

<core-drawer-panel id="dwp">
    <app-sidebar drawer id="sidebar"></app-sidebar>
    <app-router main core-animated-pages id="router" core-animated-pages transitions="hero-transition cross-fade slide-down slide-from-right" mode="hash">
            <app-route path="/create-account" element="page-create-account"></app-route>
            <app-route path="/create-account-final" element="page-register-final"></app-route>
        </app-router>
</core-drawer-panel>

\ this does **

<body unresolved>
<app-router main core-animated-pages id="router" core-animated-pages transitions="hero-transition cross-fade slide-down slide-from-right" mode="hash">
            <app-route path="/create-account" element="page-create-account"></app-route>
            <app-route path="/create-account-final" element="page-register-final"></app-route>
        </app-router>
</body>

Why is that?

erikringsmuth commented 9 years ago

Not sure about this one. Anyone else seen this?