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

This commit is contained in:
laci
2024-07-04 11:22:56 +02:00
parent f972e215ff
commit cf85dc8554
2 changed files with 26 additions and 72 deletions

View File

@@ -178,6 +178,14 @@
<script>
jQuery(document).ready(function(){
jQuery('select#smarthost').click(function() {
if (jQuery(this).val()=='Y') jQuery('#div_smarthost').show();
else jQuery('#div_smarthost').hide();
if (jQuery("#smarthost").val()=='N' && jQuery("#localproxy").val()=='Y') {
alert("Warning! Local proxy will not work without smarthost proxy service.");
}
});
jQuery('select#vpn').click(function() {
if (jQuery(this).val()=='Y') jQuery('#div_vpn').show();
else jQuery('#div_vpn').hide();