djett41 / ionic-scroll-sista

An Ionic plugin that hides the header/tabs while scrolling
MIT License
125 stars 38 forks source link

ionic-scroll-sista conflicts with jQuery? #16

Closed kettula closed 8 years ago

kettula commented 9 years ago

I got an Uncaught TypeError: Cannot read property 'scrollTop' of undefined from line 272, where scrollTop is retrieved from e.detail. It seems that when using jQuery, it stuffs the event details into the originalEvent property. I fixed this in my app by replacing

var scrollTop = e.detail.scrollTop;

with

var scrollTop = e.originalEvent ? e.originalEvent.detail.scrollTop : e.detail.scrollTop;