mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00:00
11 lines
276 B
JavaScript
11 lines
276 B
JavaScript
$('[data-toggle="collapse-next"]').on("click", function(e)
|
|
{
|
|
e.preventDefault();
|
|
$(this).parent().next().collapse("toggle");
|
|
});
|
|
|
|
if ((typeof GetUriParam("tab") !== "undefined" && GetUriParam("tab") === "changelog"))
|
|
{
|
|
$(".nav-tabs a[href='#changelog']").tab("show");
|
|
}
|