-
Notifications
You must be signed in to change notification settings - Fork 227
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
Navigation through browser history by hash not working #60
Comments
Edit: I see that navigation by browser history is implemented in the What purpose does |
Sorry for the late response. The That being said, if this is causing issues with the browser history, it will need to be fixed. I'll try to investigate why this is happening, I don't know when i'll have time though. If you find the problem i'd be happy to accept a PR for the solution :) |
Is there anything scheduled in the pipeline for this? This would be a nice to have feature sorted out. |
i actually wanted to provide a fix. in order to understand what caused the infinite hash change loop i commented the line tabsContainer.responsiveTabs({
active: 0,
load: function(event, firstTab) {
tabsContainer.css('opacity', '1');
},
setHash: true
}); i tested in
maybe this was an upstream bug? |
Setting the option
setHash
totrue
adds a unique URL hash each time a tab is opened - great feature. Opening a URL with hash via link or typeing in the adress bar opens the corresponding tab - just as expected and advertised.Navigating through the browser history via the browser's back / forward buttons however does not open the corresponding tabs, instead nothing happens, the last opened tab stays open.
The text was updated successfully, but these errors were encountered: