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
If the document location is set to a similar URL, do not reload the page.
To fix this I added the following line of code, but I can imagine the URL comparison can be optimized (e.g. by removing blanks at the end of the url):
set href(url) { if (url === $url || url+'#' === $url || url === $url+'#') { return; } ... }
See orslumen@a72ff2e
The text was updated successfully, but these errors were encountered:
envjs#25: Do not reload page if location.href has not changed
a72ff2e
No branches or pull requests
If the document location is set to a similar URL, do not reload the page.
To fix this I added the following line of code, but I can imagine the URL comparison can be optimized (e.g. by removing blanks at the end of the url):
See orslumen@a72ff2e
The text was updated successfully, but these errors were encountered: