| 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 b032445bc29d8e36f57fb8acb953acdb46350d0f..68650e317e979523cc603a3f64d56451b14f3e25 100644
|
| --- a/chrome/browser/resources/chromeos/login/oobe_buttons.js
|
| +++ b/chrome/browser/resources/chromeos/login/oobe_buttons.js
|
| @@ -39,6 +39,23 @@ Polymer({
|
| });
|
|
|
| Polymer({
|
| + is: 'oobe-next-button',
|
| +
|
| + properties: {
|
| + disabled: {type: Boolean, value: false, reflectToAttribute: true},
|
| + },
|
| +
|
| + focus: function() {
|
| + this.$.button.focus();
|
| + },
|
| +
|
| + onClick_: function(e) {
|
| + if (this.disabled)
|
| + e.stopPropagation();
|
| + }
|
| +});
|
| +
|
| +Polymer({
|
| is: 'oobe-welcome-secondary-button',
|
|
|
| properties: {
|
|
|