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

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

Issue 2944703004: Run clang-format on .js files in c/b/r/chromeos (Closed)
Patch Set: Created 3 years, 6 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/gaia_input.js
diff --git a/chrome/browser/resources/chromeos/login/gaia_input.js b/chrome/browser/resources/chromeos/login/gaia_input.js
index d36f52a91b88423349be828282b84735f8852611..208ce578ee6db5581e07e25ae3ec880c7e1a75c7 100644
--- a/chrome/browser/resources/chromeos/login/gaia_input.js
+++ b/chrome/browser/resources/chromeos/login/gaia_input.js
@@ -3,28 +3,18 @@
// found in the LICENSE file.
Polymer((function() {
- var INPUT_EMAIL_PATTERN = "^[a-zA-Z0-9.!#$%&'*+=?^_`{|}~-]+(@[^\\s@]+)?$";
+ var INPUT_EMAIL_PATTERN = '^[a-zA-Z0-9.!#$%&\'*+=?^_`{|}~-]+(@[^\\s@]+)?$';
return {
is: 'gaia-input',
properties: {
label: String,
- value: {
- notify: true,
- observer: 'updateDomainVisibility_',
- type: String
- },
-
- type: {
- observer: 'typeChanged_',
- type: String
- },
-
- domain: {
- observer: 'updateDomainVisibility_',
- type: String
- },
+ value: {notify: true, observer: 'updateDomainVisibility_', type: String},
+
+ type: {observer: 'typeChanged_', type: String},
+
+ domain: {observer: 'updateDomainVisibility_', type: String},
disabled: Boolean,

Powered by Google App Engine
This is Rietveld 408576698