You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I could fix it on that way that I override the onPopState event handler like:
History.onPopState = function(event,extra){
if (History.getLocationHref().indexOf("#")!==-1) return;
..
Please fix it!
The text was updated successfully, but these errors were encountered:
In case of section change in the current page I call a link like:
http://localhost:8080/page/xxxid#section-How+does+Test+work%3F
We use also tab changes on the page, which look like
http://localhost:8080/page/xxxid
onPopState state function calls every time when I use this links, and modify the link on a wrong way when I use section change (remove the id):
http://localhost:8080/wiki/section-How+does+Test%3F
I could fix it on that way that I override the onPopState event handler like:
History.onPopState = function(event,extra){
if (History.getLocationHref().indexOf("#")!==-1) return;
..
Please fix it!
The text was updated successfully, but these errors were encountered: