| 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_'
|
| }
|
| },
|
|
|