mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 23:38:38 +09:00
Never let "localhost" get sent to a proxy.
Also make "No proxy for" editable always when usable.
This commit is contained in:
parent
183aae036f
commit
dbe5dd5e2a
3 changed files with 9 additions and 2 deletions
|
|
@ -76,7 +76,7 @@ var gConnectionsDialog = {
|
|||
var autologinProxyPref = document.getElementById("signon.autologin.proxy");
|
||||
autologinProxyPref.disabled = proxyTypePref.value == 0;
|
||||
var noProxiesPref = document.getElementById("network.proxy.no_proxies_on");
|
||||
noProxiesPref.disabled = proxyTypePref.value != 1;
|
||||
noProxiesPref.disabled = proxyTypePref.value == 0;
|
||||
|
||||
var autoconfigURLPref = document.getElementById("network.proxy.autoconfig_url");
|
||||
autoconfigURLPref.disabled = proxyTypePref.value != 2;
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ var gConnectionsDialog = {
|
|||
autologinProxyPref.disabled = proxyTypePref.value == 0;
|
||||
|
||||
var noProxiesPref = document.getElementById("network.proxy.no_proxies_on");
|
||||
noProxiesPref.disabled = proxyTypePref.value != 1;
|
||||
noProxiesPref.disabled = proxyTypePref.value == 0;
|
||||
|
||||
var autoconfigURLPref = document.getElementById("network.proxy.autoconfig_url");
|
||||
autoconfigURLPref.disabled = proxyTypePref.value != 2;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue