Make it possible to show the changelog directly via /about?tab=changelog

This commit is contained in:
Bernd Bestel
2019-03-09 16:25:23 +01:00
parent 8efcb79ed7
commit 659d60b235

View File

@@ -3,3 +3,8 @@
e.preventDefault();
$(this).parent().next().collapse("toggle");
});
if ((typeof GetUriParam("tab") !== "undefined" && GetUriParam("tab") === "changelog"))
{
$(".nav-tabs a[href='#changelog']").tab("show");
}