Thank you in advance for any help.
I am creating a Single page application that uses tabs to display content. What I want is when users click tabs, it gets pushed to the history, so that for example when the user clicks back, the previously selected tab gets selected. The user also has the option of closing tabs. So here I need to 'rewrite' the history to remove instances of this tab.
I have all of this working but only in Firefox (I don't have other browsers to test in at work). Chrome doesn't seem to fire the popsate event when I call history.go.
This is the code that I have and that works exactly how I want it to in Firefox.
function removeTab(tabID) {
isHistoryrewriteBool = true;
// Remove all tabID references in history array
var a = 0;
while (a != -1) {
a = tabHistory.indexOf(tabID);
if (a != -1)
{
tabHistory.splice(a, 1);
}
}
// This routine simply strips out any tabID references that are the same consequitively.
// e.g. [tabOne, tabOne, tabTwo, tabTwo] would become [tabOne, tabTwo]
// You could end up in this situation if the tab you just removed was situated between the duplicate tabs
// e.g [tabOne, tabThree, tabOne, tabTwo, tabThree, tabTwo]
var previousTab;
for (var i = tabHistory.length; i >= 0; i--) {
if (tabHistory[i] === previousTab)
{
tabHistory.splice(i, 1);
}
previousTab = tabHistory[i];
}
var ourHistoryLength = history.length - webAppStartHistoryLength;
var goBack = ourHistoryLength - ((ourHistoryLength * 2)- 1);
// This is supposed to move the history pointer to where we started writing history.
// Only works in FF.
history.go(goBack);
//Now rewrite the history based on our array.
for (var i = 0; i < tabHistory.length; i++) {
if (i === 0 && tabHistory.length != 1)
{
history.replaceState({ id: i }, " ", " ");
}
else{
history.pushState({ id: i }, " ", " ");
}
}
// Select the last tab on the history array.
var tabIndx = -1;
var tab = $("#" + tabHistory[tabHistory.length - 1]);
if (tab !== null) {
tabIndx = tab.index();
}
$("#MainTabs").data("kendoTabStrip").select(tabIndx);
currentHistoryPointer = tabHistory.length - 1;
isHistoryrewriteBool = false;
}
Does anyone know why Chrome doesn't fire the popsate event in this situation? If I comment out all of the code apart from the history.go, then it does fire the popsate event.
Again, thank you in advance for any help.
Dom