[doc] Integrate and update selfhosted bootstrap, jquery, ...

Also delete some unused includes, such as google_analytics and usermap*
and delete old IE code
This commit is contained in:
Andreas Dangel
2020-09-18 11:49:49 +02:00
parent a62b5a388e
commit 8a1c8665b2
26 changed files with 176 additions and 6107 deletions

View File

@ -43,7 +43,9 @@ $(function() {
json = JSON.parse(tabsState || "{}");
$.each(json, function(containerId, href) {
return $("#" + containerId + " a[href=" + href + "]").tab('show');
if (containerId && containerId !== "undefined") {
$("#" + containerId + " a[href=" + href + "]").tab('show');
}
});
$("ul.nav.nav-pills, ul.nav.nav-tabs").each(function() {