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

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

Issue 2663293002: MD WebUI: Networking polish in OOBE and Settings (Closed)
Patch Set: Rebase Created 3 years, 10 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/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: {
« no previous file with comments | « chrome/browser/resources/chromeos/login/oobe_buttons.html ('k') | chrome/browser/resources/chromeos/login/oobe_nav_button.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698