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
Hi everyone, is there any opportunity to make an url without #? For example i have: www.mypage.com/blabla#/slideNumber but i want: www.mypage.com/blabla/slideNumber thanks for your time
The text was updated successfully, but these errors were encountered:
const originalReplaceState = history.replaceState history.replaceState = (_a, _b, url) => { url = url.toString().replace('#', '/' + identifier) originalReplaceState.bind(history)(_a, _b, url) }
With this the hash is removed. I haven't tested this very much.
Sorry, something went wrong.
No branches or pull requests
Hi everyone,
is there any opportunity to make an url without #?
For example i have: www.mypage.com/blabla#/slideNumber but i want: www.mypage.com/blabla/slideNumber
thanks for your time
The text was updated successfully, but these errors were encountered: