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

Unified Diff: chrome/browser/resources/chromeos/login/offline_gaia.js

Issue 2641123007: Fix offline_gaia.js and re-run polymer reproduce.sh (Closed)
Patch Set: Created 3 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/resources/chromeos/login/offline_gaia.js
diff --git a/chrome/browser/resources/chromeos/login/offline_gaia.js b/chrome/browser/resources/chromeos/login/offline_gaia.js
index 2b61208bb17ff866e7cac3892c12b983940379a5..57a1de23362e32aae4e381d78607e42a6ddd3a08 100644
--- a/chrome/browser/resources/chromeos/login/offline_gaia.js
+++ b/chrome/browser/resources/chromeos/login/offline_gaia.js
@@ -103,7 +103,7 @@ Polymer((function() {
return this.$.animatedPages.selected == 'emailSection';
},
- switchToEmailCard(animated) {
+ switchToEmailCard: function(animated) {
dpapad 2017/01/20 22:48:32 @param?
stevenjb 2017/01/20 23:05:45 None of the methods in this file (which I am not a
this.$.passwordInput.value = '';
this.$.passwordInput.isInvalid = false;
this.$.emailInput.isInvalid = false;
@@ -114,7 +114,7 @@ Polymer((function() {
this.$.animatedPages.selected = 'emailSection';
},
- switchToPasswordCard(email, animated) {
+ switchToPasswordCard: function(email, animated) {
dpapad 2017/01/20 22:48:32 Same here.
stevenjb 2017/01/20 23:05:45 ditto
this.$.emailInput.value = email;
if (email.indexOf('@') === -1) {
if (this.emailDomain)

Powered by Google App Engine
This is Rietveld 408576698