docs: fix bug in script for tab cookies

Change-Id: I09a49764f66673b3f55032158efd44c228832e8f
This commit is contained in:
Scott Main 2011-12-15 19:12:17 -08:00
parent 1d42360a02
commit 0f429ebe63
1 changed files with 2 additions and 2 deletions

View File

@ -425,11 +425,11 @@ function loadLast(cookiePath) {
$(window).unload(function(){
var path = getBaseUri(location.pathname);
if ((path.indexOf("/reference/") != -1) || (path.indexOf("/training/") != -1)) {
if (path.indexOf("/reference/") != -1) {
writeCookie("lastpage", path, "reference", null);
} else if (path.indexOf("/guide/") != -1) {
writeCookie("lastpage", path, "guide", null);
} else if (path.indexOf("/resources/") != -1) {
} else if ((path.indexOf("/resources/") != -1) || (path.indexOf("/training/") != -1)) {
writeCookie("lastpage", path, "resources", null);
}
});