Go to specified tab on save or hyperlink

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER
2017-10-18 23:41:03 +01:00
parent 5dc556c7b9
commit 37313bf400

View File

@@ -161,3 +161,9 @@ $("button[id^='adlist-btn-']").on("click", function (e) {
$(this).siblings("input[name^='adlist-enable-']").prop("disabled", !status);
$(this).siblings("a").css("text-decoration", textType);
});
// Javascript to go to specified tab on save or hyperlink
$(function () {
var activeTab = $('[href=' + location.hash + ']');
activeTab && activeTab.tab('show');
});