Revision fe68a6a2
Added by Stephen Beaver over 9 years ago
src/usr/local/www/vpn_ipsec_phase1.php | ||
---|---|---|
1134 | 1134 |
//}); |
1135 | 1135 |
|
1136 | 1136 |
// Peer identifier |
1137 |
$('#peerid_type').click(function () {
|
|
1137 |
$('#peerid_type').change(function () {
|
|
1138 | 1138 |
peeridsel_change(); |
1139 | 1139 |
}); |
1140 | 1140 |
|
1141 | 1141 |
// My identifier |
1142 |
$('#myid_type').click(function () {
|
|
1142 |
$('#myid_type').change(function () {
|
|
1143 | 1143 |
myidsel_change(); |
1144 | 1144 |
}); |
1145 | 1145 |
|
1146 | 1146 |
// ike type |
1147 |
$('#iketype').click(function () {
|
|
1147 |
$('#iketype').change(function () {
|
|
1148 | 1148 |
iketype_change(); |
1149 | 1149 |
}); |
1150 | 1150 |
|
... | ... | |
1154 | 1154 |
}); |
1155 | 1155 |
|
1156 | 1156 |
// authentication method |
1157 |
$('#ealgo').click(function () {
|
|
1157 |
$('#ealgo').change(function () {
|
|
1158 | 1158 |
ealgosel_change(<?=$keyset?>); |
1159 | 1159 |
}); |
1160 | 1160 |
|
src/usr/local/www/vpn_openvpn_server.php | ||
---|---|---|
1589 | 1589 |
}); |
1590 | 1590 |
|
1591 | 1591 |
// Mode |
1592 |
$('#mode').click(function () {
|
|
1592 |
$('#mode').change(function () {
|
|
1593 | 1593 |
mode_change(); |
1594 | 1594 |
tuntap_change(); |
1595 | 1595 |
}); |
Also available in: Unified diff
Fixed #6401