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

Side by Side Diff: chrome/browser/resources/settings/settings_menu/settings_menu.js

Issue 981203007: Scaffold for MD-Settings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Feedback. Update core-selected-pages usage. 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 /**
6 * @fileoverview
7 * 'cr-settings-menu' shows a menu with the given pages.
8 *
9 * Example:
10 *
11 * <cr-settings-menu pages="{{pages}}" selectedId="{{selectedId}}">
12 * </cr-settings-menu>
13 *
14 * @group Chrome Settings Elements
15 * @element cr-settings-menu
16 */
17 Polymer('cr-settings-menu', {
18 publish: {
19 /**
20 * Pages to show menu items for.
21 *
22 * @attribute pages
23 * @type Array<!Object>
24 * @default null
25 */
26 pages: null,
27
28 /**
29 * ID of the currently selected page.
30 *
31 * @attribute selectedId
32 * @type string
33 * default ''
34 */
35 selectedId: '',
36 },
37
38 /** @override */
39 created: function() {
40 this.pages = [];
41 },
42 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698