material-components / material-components-web-react

Material Components for React (MDC React)
MIT License
2.02k stars 227 forks source link

Top App Bar needs ability to setScrollTarget #401

Closed moog16 closed 5 years ago

moog16 commented 5 years ago

top app bar needs ability to scroll from outside of window. Currently like: getViewportScrollY: () => window.pageYOffset,, should be

getViewportScrollY: () =>
        this.scrollTarget_[this.scrollTarget_ === window ? 'pageYOffset' : 'scrollTop'],

related https://github.com/material-components/material-components-web/pull/2914

moog16 commented 5 years ago

Closing for #771