You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can remove the e.preventDefault(); from the touchEnd function so the links work again. Not sure what side effects this can have but it's a quick solution.
function touchEnd(e){
if (touchPos.top > 0 || isShowLoading) {
return;
}
//e.preventDefault();
if (touchCurrentY > basePosY - customNavTop + NUM_POS_MIN_Y) {
// Should move over the min position
doRotate();
} else {
backToStart();
}
}
...
links on the page isn't working when using material refresh for a scrollable page, especially when the page is at the top.
The text was updated successfully, but these errors were encountered: