summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/vpn_openvpn_client.php
diff options
context:
space:
mode:
authorStephen Beaver <sbeaver@netgate.com>2015-10-01 13:42:33 -0400
committerStephen Beaver <sbeaver@netgate.com>2015-10-01 13:43:19 -0400
commit96c18fe49006fb0cd1c41cb06a2470a081637caf (patch)
tree78004a367c853b56a6970a7d935532d99395cb39 /src/usr/local/www/vpn_openvpn_client.php
parent67b3520990c0dcba262b392bf5c8b06f37ede112 (diff)
downloadpfsense-96c18fe49006fb0cd1c41cb06a2470a081637caf.zip
pfsense-96c18fe49006fb0cd1c41cb06a2470a081637caf.tar.gz
Addresses #5159 by removing hide/show/disable/enable functions to included file
Diffstat (limited to 'src/usr/local/www/vpn_openvpn_client.php')
-rw-r--r--src/usr/local/www/vpn_openvpn_client.php43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/usr/local/www/vpn_openvpn_client.php b/src/usr/local/www/vpn_openvpn_client.php
index f30f0cc..d848ff4 100644
--- a/src/usr/local/www/vpn_openvpn_client.php
+++ b/src/usr/local/www/vpn_openvpn_client.php
@@ -926,49 +926,6 @@ events.push(function(){
hideInput('tls', $('#autotls_enable').prop('checked') || !$('#tlsauth_enable').prop('checked'));
}
- // ---------- Library of show/hide functions ----------------------------------------------------------------------
-
- // Hides div whose label contains the specified text. (Good for StaticText)
- function hideLabel(text, hide) {
- var element = $('label:contains(' + text + ')');
-
- if(hide)
- element.parent('div').addClass('hidden');
- else
- element.parent('div').removeClass('hidden');
- }
-
- // Hides the <div> in which the specified input element lives so that the input,
- // its label and help text are hidden
- function hideInput(id, hide) {
- if(hide)
- $('#' + id).parent().parent('div').addClass('hidden');
- else
- $('#' + id).parent().parent('div').removeClass('hidden');
- }
-
- // Hides the <div> in which the specified checkbox lives so that the checkbox,
- // its label and help text are hidden
- function hideCheckbox(id, hide) {
- if(hide)
- $('#' + id).parent().parent().parent('div').addClass('hidden');
- else
- $('#' + id).parent().parent().parent('div').removeClass('hidden');
- }
-
- // Disables the specified input element
- function disableInput(id, disable) {
- $('#' + id).prop("disabled", disable);
- }
-
- // Hides all elements of the specified class. This will usually be a section or group
- function hideClass(s_class, hide) {
- if(hide)
- $('.' + s_class).hide();
- else
- $('.' + s_class).show();
- }
-
// ---------- Monitor elements for change and call the appropriate display functions ------------------------------
// TLS Authorization
OpenPOWER on IntegriCloud