docs: regenerate

This commit is contained in:
goat 2021-12-06 19:14:46 +01:00
parent ebe997089e
commit cc362d5fd7
No known key found for this signature in database
GPG key ID: 7773BB5B43BA52E5
896 changed files with 28457 additions and 29442 deletions

View file

@ -990,7 +990,7 @@ $(function () {
}
function readTabsQueryStringParam() {
var qs = parseQueryString();
var qs = parseQueryString(window.location.search);
var t = qs.tabs;
if (t === undefined || t === '') {
return [];
@ -999,7 +999,7 @@ $(function () {
}
function updateTabsQueryStringParam(state) {
var qs = parseQueryString();
var qs = parseQueryString(window.location.search);
qs.tabs = state.selectedTabs.join();
var url = location.protocol + "//" + location.host + location.pathname + "?" + toQueryString(qs) + location.hash;
if (location.href === url) {