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

Unified Diff: chrome/browser/resources/settings/help_pane/help_pane.js

Issue 986843002: Scaffold for MD-Settings, inside chrome://md-settings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Expand scaffold and add to chrome://md-settings (point of this CL) Created 5 years, 9 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/settings/help_pane/help_pane.js
diff --git a/chrome/browser/resources/settings/help_pane/help_pane.js b/chrome/browser/resources/settings/help_pane/help_pane.js
new file mode 100644
index 0000000000000000000000000000000000000000..62d106b6c00d7c6e5fd8de83649b06dde3e0cedd
--- /dev/null
+++ b/chrome/browser/resources/settings/help_pane/help_pane.js
@@ -0,0 +1,27 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+/**
+ * @fileoverview
+ * 'cr-help-pane' shows help articles pertaining to the current page.
+ *
+ * Example:
+ *
+ * <cr-help-pane helpArticles="{{helpArticles}}"></cr-help-pane>
+ *
+ * @group Chrome Settings Elements
+ * @element cr-help-pane
+ */
+Polymer('cr-help-pane', {
+ publish: {
+ /**
+ * List of help articles.
+ *
+ * @attribute helpArticles
+ * @type Array<!Object>
+ * default []
+ */
+ helpArticles: [],
+ },
+});
« no previous file with comments | « chrome/browser/resources/settings/help_pane/help_pane.html ('k') | chrome/browser/resources/settings/settings.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698