diff --git a/index.html b/index.html
index c20581d..c7e191f 100644
--- a/index.html
+++ b/index.html
@@ -30,8 +30,8 @@
@@ -50,8 +50,8 @@
@@ -59,8 +59,8 @@
@@ -100,8 +100,8 @@
@@ -113,8 +113,8 @@
@@ -138,10 +138,10 @@
-
-
@@ -287,8 +287,8 @@
-
-
+
+
@@ -375,23 +375,23 @@
jQuery(document).ready(function(){
jQuery('select#smarthost').click(function() {
- if (jQuery(this).val()=='Y') jQuery('#div_smarthost').show();
+ if (jQuery(this).val()=='yes') jQuery('#div_smarthost').show();
else jQuery('#div_smarthost').hide();
- if (jQuery("#smarthost").val()=='N' && jQuery("#localproxy").val()=='Y') {
+ if (jQuery("#smarthost").val()=='no' && jQuery("#localproxy").val()=='yes') {
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();
+ if (jQuery(this).val()=='yes') jQuery('#div_vpn').show();
else jQuery('#div_vpn').hide();
});
jQuery('select#discovery').click(function() {
- if (jQuery(this).val()=='Y') jQuery('#div_discover').show();
+ if (jQuery(this).val()=='yes') jQuery('#div_discover').show();
else jQuery('#div_discover').hide();
});
- jQuery('select#additional').click(function() {
- if (jQuery(this).val()=='Y') jQuery('#div_additionals').show();
+ jQuery('select#additionals').click(function() {
+ if (jQuery(this).val()=='yes') jQuery('#div_additionals').show();
else jQuery('#div_additionals').hide();
});
jQuery('select#nextcloud').click(function() {