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

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

Issue 4705003: Do not allow network status updates while password field is active. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/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 | « no previous file | chrome/browser/resources/options/chromeos_internet_options.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options/chromeos_internet_network_element.js
diff --git a/chrome/browser/resources/options/chromeos_internet_network_element.js b/chrome/browser/resources/options/chromeos_internet_network_element.js
index 7541f2b314289c7ed594de034c50f82eaa00899e..887a8da8d2b38ea6c1a41920eb918803019840e3 100644
--- a/chrome/browser/resources/options/chromeos_internet_network_element.js
+++ b/chrome/browser/resources/options/chromeos_internet_network_element.js
@@ -70,6 +70,7 @@ cr.define('options.internet', function() {
if (this.childNodes[i] != item)
this.childNodes[i].hidePassword();
}
+ InternetOptions.unlockUpdates();
// If clicked on other networks item.
if (data && data.servicePath == '?') {
item.showOtherLogin();
@@ -291,6 +292,7 @@ cr.define('options.internet', function() {
passwordDiv.appendChild(buttonEl);
this.connecting = true;
this.appendChild(passwordDiv);
+ InternetOptions.lockUpdates();
Charlie Lee 2010/11/09 17:53:45 maybe put this at the beginning of the method?
kochi 2010/11/10 02:31:22 Done.
},
handleShowPass_: function(e) {
@@ -402,6 +404,7 @@ cr.define('options.internet', function() {
securityInput.addEventListener('change', keyup_listener);
passInput.addEventListener('keyup', keyup_listener);
this.connecting = true;
+ InternetOptions.lockUpdates();
Charlie Lee 2010/11/09 17:53:46 maybe put this at the beginning of the method?
kochi 2010/11/10 02:31:22 Done.
},
handleLogin_: function(e) {
« no previous file with comments | « no previous file | chrome/browser/resources/options/chromeos_internet_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698