Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Links won't work when using material refresh #13

Open
newpen opened this issue Jan 14, 2016 · 2 comments
Open

Links won't work when using material refresh #13

newpen opened this issue Jan 14, 2016 · 2 comments

Comments

@newpen
Copy link

newpen commented Jan 14, 2016

links on the page isn't working when using material refresh for a scrollable page, especially when the page is at the top.

@alieslamifard
Copy link

i have this problem too.

@Selmarw
Copy link

Selmarw commented May 10, 2016

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();
        }
}
...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants