| Index: chrome/browser/resources/chromeos/login/oobe_buttons.js
|
| diff --git a/chrome/browser/resources/chromeos/login/oobe_buttons.js b/chrome/browser/resources/chromeos/login/oobe_buttons.js
|
| index dac5f05e37d1a2215d17d3dc47cea0d315800b1c..1b469a99bcabbbdb2a007c844a33255f6d158e7d 100644
|
| --- a/chrome/browser/resources/chromeos/login/oobe_buttons.js
|
| +++ b/chrome/browser/resources/chromeos/login/oobe_buttons.js
|
| @@ -3,18 +3,16 @@
|
| // found in the LICENSE file.
|
|
|
| Polymer({
|
| - is: 'oobe-icon-button',
|
| + is: 'oobe-text-button',
|
|
|
| properties: {
|
| disabled: {type: Boolean, value: false, reflectToAttribute: true},
|
|
|
| - icon: String,
|
| -
|
| - ariaLabel: String
|
| + inverse: Boolean,
|
| },
|
|
|
| focus: function() {
|
| - this.$.iconButton.focus();
|
| + this.$.textButton.focus();
|
| },
|
|
|
| onClick_: function(e) {
|
| @@ -24,22 +22,11 @@ Polymer({
|
| });
|
|
|
| Polymer({
|
| - is: 'oobe-text-button',
|
| + is: 'oobe-welcome-secondary-button',
|
|
|
| properties: {
|
| - disabled: {type: Boolean, value: false, reflectToAttribute: true},
|
| -
|
| - label: String,
|
| -
|
| - inverse: Boolean,
|
| - },
|
| + icon: String,
|
|
|
| - focus: function() {
|
| - this.$.textButton.focus();
|
| + ariaLabel: String
|
| },
|
| -
|
| - onClick_: function(e) {
|
| - if (this.disabled)
|
| - e.stopPropagation();
|
| - }
|
| });
|
|
|