This may work as a workaround. You can use the fire event in the polymer as soon as something fires the listen event for a call and makes the page scroll up . At least that solved my problem with transitioning kernel-animated pages: slide-from-right.
Polymer
this.fire('scroll-top')
Index.html
document.addEventListener('scroll-top'){ // Access the main core-header-panel var scaffold = document.querySelector('core-scaffold'); var scrollArea = scaffold.shadowRoot.querySelector('core-header-panel'); scrollArea.scroller.scrollTop = 0; // Scroll to top } }
wirlez
source share