layout changes
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-05-30 15:56:43 +00:00
parent 99b248577e
commit 4de1511546
2 changed files with 43 additions and 15 deletions

View File

@@ -111,10 +111,14 @@ function check_vpn() {
if (data=="2") {
$('#vpn_off').hide();
$('#vpn_on').show();
$('#pro_off').hide();
$('#pro_on').show();
}
else {
$('#vpn_on').hide();
$('#vpn_off').show();
$('#pro_on').hide();
$('#pro_off').show();
}
setTimeout(check_vpn, 10000);
});