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
No known key found for this signature in database
GPG Key ID: 71BD34C0D4891300

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");
}