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 have tabs with
< a href="#tab1">tab1< /a> and
< a href="#tab2">tab2< /a>
The url location is domain.com/sub/ (which isn't a directory, but rewritten url).
When I click on a tab, "/sub/" is lost and the location in address bar is changed to domain.com/#tab1 instead of domain.com/sub/#tab1 which is a problem if I refresh the page.
When I change
"history.pushState( null, null, window.location.search + $(this).attr('href') );"
to
"history.pushState( null, null, window.location.pathname + $(this).attr('href') );"
in kickstart.js, line 94 - the problem is solved.
I didn't test it to see if this would be a problem for some other things, but it solves it for me right now.
Just wanted you to know of this issue.
Thanks for this awesome tool 👍
The text was updated successfully, but these errors were encountered:
I have tabs with
< a href="#tab1">tab1< /a> and
< a href="#tab2">tab2< /a>
The url location is domain.com/sub/ (which isn't a directory, but rewritten url).
When I click on a tab, "/sub/" is lost and the location in address bar is changed to domain.com/#tab1 instead of domain.com/sub/#tab1 which is a problem if I refresh the page.
When I change
"history.pushState( null, null, window.location.search + $(this).attr('href') );"
to
"history.pushState( null, null, window.location.pathname + $(this).attr('href') );"
in kickstart.js, line 94 - the problem is solved.
I didn't test it to see if this would be a problem for some other things, but it solves it for me right now.
Just wanted you to know of this issue.
Thanks for this awesome tool 👍
The text was updated successfully, but these errors were encountered: