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

Unified Diff: chrome/browser/sync/resources/configure.html

Issue 6309002: Further tweaks to the passphrase UI to deal with passphrase entry.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months 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
Index: chrome/browser/sync/resources/configure.html
===================================================================
--- chrome/browser/sync/resources/configure.html (revision 71271)
+++ chrome/browser/sync/resources/configure.html (working copy)
@@ -424,10 +424,10 @@
emptyError.style.display = "none";
mismatchError.style.display = "none";
- if (getRadioCheckedValue() != "explicit") {
+ var f = document.getElementById("chooseDataTypesForm");
+ if (getRadioCheckedValue() != "explicit" || f.option[0].disabled) {
return true;
}
- var f = document.getElementById("chooseDataTypesForm");
if (f.passphrase.value.length == 0) {
emptyError.style.display = "block";
return false;
« no previous file with comments | « chrome/browser/sync/profile_sync_service_password_unittest.cc ('k') | chrome/browser/sync/resources/passphrase.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698