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

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

Issue 2948093002: ChromeOS OOBE: rename and add new attributes to oobe-dialog (Closed)
Patch Set: Rebased. Created 3 years, 6 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_dialog.js
diff --git a/chrome/browser/resources/chromeos/login/oobe_dialog.js b/chrome/browser/resources/chromeos/login/oobe_dialog.js
index 41abb1d7e37d4d411688354f4e66bb461be50b88..3e01097198cc5813886d4c23965e4401fbee38fe 100644
--- a/chrome/browser/resources/chromeos/login/oobe_dialog.js
+++ b/chrome/browser/resources/chromeos/login/oobe_dialog.js
@@ -23,9 +23,17 @@ Polymer({
},
/**
- * Control visibility of the footer container.
+ * Control visibility of the header container.
*/
- noFooter: {
+ noHeader: {
+ type: Boolean,
+ value: false,
+ },
+
+ /**
+ * Removes footer padding.
+ */
+ noFooterPadding: {
type: Boolean,
value: false,
},
@@ -51,8 +59,8 @@ Polymer({
},
/**
- * This is called from oobe_welcome when this dialog is shown.
- */
+ * This is called from oobe_welcome when this dialog is shown.
+ */
show: function() {
var focusedElements = this.getElementsByClassName('focus-on-show');
if (focusedElements.length > 0)

Powered by Google App Engine
This is Rietveld 408576698