Chromium Code Reviews| 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) |