From 659d60b2351446af3d4b037785fae7c742ddc518 Mon Sep 17 00:00:00 2001 From: Bernd Bestel Date: Sat, 9 Mar 2019 16:25:23 +0100 Subject: [PATCH] Make it possible to show the changelog directly via /about?tab=changelog --- public/viewjs/about.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/viewjs/about.js b/public/viewjs/about.js index b5c31b28..a4228cc4 100644 --- a/public/viewjs/about.js +++ b/public/viewjs/about.js @@ -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"); +}