summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStephen Beaver <sbeaver@netgate.com>2016-03-08 14:46:26 -0500
committerStephen Beaver <sbeaver@netgate.com>2016-03-08 14:46:58 -0500
commit40b65f4e7d00c977cacd15e02f67426464e1c608 (patch)
treee77d4422dcd4e632527016842df8d798dcd71214 /src
parent88ce4c451c096269e279caba29c151c3bb739bec (diff)
downloadpfsense-40b65f4e7d00c977cacd15e02f67426464e1c608.zip
pfsense-40b65f4e7d00c977cacd15e02f67426464e1c608.tar.gz
Changed all selectoraction to"change" instead of "click"
Diffstat (limited to 'src')
-rw-r--r--src/usr/local/www/vpn_ipsec_phase2.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/usr/local/www/vpn_ipsec_phase2.php b/src/usr/local/www/vpn_ipsec_phase2.php
index aeaecea..553950a 100644
--- a/src/usr/local/www/vpn_ipsec_phase2.php
+++ b/src/usr/local/www/vpn_ipsec_phase2.php
@@ -944,12 +944,12 @@ events.push(function() {
// ---------- Monitor elements for change and call the appropriate display functions ----------
// Protocol
- $('#proto').click(function () {
+ $('#proto').change(function () {
change_protocol();
});
// Localid
- $('#localid_type').click(function () {
+ $('#localid_type').change(function () {
typesel_change_local(<?=htmlspecialchars($pconfig['localid_netbits'])?>);
});
@@ -959,12 +959,12 @@ events.push(function() {
});
// NATLocalid
- $('#natlocalid_type').click(function () {
+ $('#natlocalid_type').change(function () {
typesel_change_natlocal(<?=htmlspecialchars($pconfig['natlocalid_netbits'])?>);
});
// Mode
- $('#mode').click(function () {
+ $('#mode').change(function () {
change_mode();
});
OpenPOWER on IntegriCloud