Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11386)

Unified Diff: chrome/browser/resources/options/chromeos_proxy_options.js

Issue 4715001: Merge 65401 - A bunch of proxy DOMUI changes.... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/552c/src/
Patch Set: Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/proxy_config_service_impl_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options/chromeos_proxy_options.js
===================================================================
--- chrome/browser/resources/options/chromeos_proxy_options.js (revision 65413)
+++ chrome/browser/resources/options/chromeos_proxy_options.js (working copy)
@@ -91,6 +91,7 @@
* @param {Event} e Click event.
*/
disableManual_: function(e) {
+ $('proxyAllProtocols').disabled = true;
$('proxyHostName').disabled = true;
$('proxyHostPort').disabled = true;
$('proxyHostSingleName').disabled = true;
@@ -114,6 +115,7 @@
* @param {Event} e Click event.
*/
enableManual_: function(e) {
+ $('proxyAllProtocols').disabled = false;
$('proxyHostName').disabled = false;
$('proxyHostPort').disabled = false;
$('proxyHostSingleName').disabled = false;
« no previous file with comments | « chrome/browser/chromeos/proxy_config_service_impl_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698