We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
(In mobile)
When I am at end of page and I click menu bar ( 3 horizontal bars at top left), the content scrolls up automatically.
How can I stop this behaviour?
The text was updated successfully, but these errors were encountered:
add e.preventDefault(); to
e.preventDefault();
sidePanelToggler.addEventListener('click', (e) => { e.preventDefault(); if (sidePanel.classList.contains('sidepanel-visible')) { console.log('visible'); sidePanel.classList.remove('sidepanel-visible'); sidePanel.classList.add('sidepanel-hidden'); } else { console.log('hidden'); sidePanel.classList.remove('sidepanel-hidden'); sidePanel.classList.add('sidepanel-visible'); } });
Sorry, something went wrong.
Not working
No branches or pull requests
(In mobile)
When I am at end of page and I click menu bar ( 3 horizontal bars at top left), the content scrolls up automatically.
How can I stop this behaviour?
The text was updated successfully, but these errors were encountered: