rearrange menu items

This commit is contained in:
Christian Herzog
2019-10-10 20:28:11 +02:00
parent b1f234d460
commit 63b1f1bcdb
2 changed files with 6 additions and 6 deletions

View File

@@ -604,7 +604,7 @@ function checkStatus(){
recovery = true;
$("#otadiv").show();
$('a[href^="#tab-audio"]').hide();
$('a[href^="#tab-gpio"]').hide();
$('a[href^="#tab-gpio"]').show();
$('a[href^="#tab-nvs"]').show();
$("footer.footer").removeClass('sl');
$("footer.footer").addClass('recovery');
@@ -615,7 +615,7 @@ function checkStatus(){
recovery = false;
$("#otadiv").hide();
$('a[href^="#tab-audio"]').show();
$('a[href^="#tab-gpio"]').show();
$('a[href^="#tab-gpio"]').hide();
$('a[href^="#tab-nvs"]').hide();
$("footer.footer").removeClass('recovery');
$("footer.footer").addClass('sl');