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

Fix hash only links #7

Closed
wants to merge 1 commit into from

Conversation

KwanMan
Copy link
Contributor

@KwanMan KwanMan commented Nov 13, 2017

It seems space-router doesn't handle any hash-only links correctly (e.g. #my-section) as the url passed to the match function is just #my-section meaning it will always just match the / route.

return match(routes, url, qs)
}

function onClick (e, url) {
e.preventDefault()
if (/^#/.test(url)) {
url = history.url().replace(/#.*/, url)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

or maybe we still just push url but figure out the proper url in history module

@KidkArolis KidkArolis closed this Dec 6, 2017
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

Successfully merging this pull request may close these issues.

None yet

2 participants