mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Fixed #7451
Revised onchage handlers to obviate need for second click in Chrome on MacOS
This commit is contained in:
parent
8769058c34
commit
dd3c646fa5
@ -1029,17 +1029,17 @@ events.push(function() {
|
||||
});
|
||||
|
||||
// Mode
|
||||
$('#mode').click(function () {
|
||||
$('#mode').change(function () {
|
||||
mode_change();
|
||||
});
|
||||
|
||||
// Use proxy
|
||||
$('#proxy_authtype').click(function () {
|
||||
$('#proxy_authtype').change(function () {
|
||||
useproxy_changed();
|
||||
});
|
||||
|
||||
// Tun/tap
|
||||
$('#dev_mode').click(function () {
|
||||
$('#dev_mode').change(function () {
|
||||
dev_mode_change();
|
||||
});
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user