I get an exception at Uncaught TypeError: Cannot read property 'scrollTop' of undefined
$element.bind('scroll', function (e) {
if (isNavBarTransitioning) {
return;
}
//support for jQuery event as well
e = e.originalEvent || e;
var duration = 0;
var scrollTop = e.detail.scrollTop; // exception thrown here
<ion-content overflow-scroll="false"> fixes the issue by forcing JS scroll
I get an exception at
Uncaught TypeError: Cannot read property 'scrollTop' of undefined
<ion-content overflow-scroll="false">
fixes the issue by forcing JS scroll