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

Unified Diff: chrome/browser/resources/md_user_manager/user_manager_dialog.js

Issue 2600683002: Run tools/clang-format-js on some of chrome/browser/resources/ (Closed)
Patch Set: hackhackhack 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/md_user_manager/user_manager_dialog.js
diff --git a/chrome/browser/resources/md_user_manager/user_manager_dialog.js b/chrome/browser/resources/md_user_manager/user_manager_dialog.js
index 6db1a35475ec2c59d0c5defb86dfba2a85eb314e..31721acddc56a04e9a4a69e98c8acdaf1f5ff395 100644
--- a/chrome/browser/resources/md_user_manager/user_manager_dialog.js
+++ b/chrome/browser/resources/md_user_manager/user_manager_dialog.js
@@ -12,16 +12,10 @@ Polymer({
properties: {
/** @override */
- noCancelOnOutsideClick: {
- type: Boolean,
- value: true
- },
+ noCancelOnOutsideClick: {type: Boolean, value: true},
/** @override */
- withBackdrop: {
- type: Boolean,
- value: true
- },
+ withBackdrop: {type: Boolean, value: true},
/**
* The first node that can receive focus.
@@ -29,7 +23,9 @@ Polymer({
*/
firstFocusableNode: {
type: Object,
- value: function() { return this.$.close; },
+ value: function() {
+ return this.$.close;
+ },
observer: 'firstFocusableNodeChanged_'
},
@@ -39,7 +35,9 @@ Polymer({
*/
lastFocusableNode: {
type: Object,
- value: function() { return this.$.close; },
+ value: function() {
+ return this.$.close;
+ },
observer: 'lastFocusableNodeChanged_'
}
},

Powered by Google App Engine
This is Rietveld 408576698