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

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

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 <link rel="import" href="chrome://resources/polymer/core-menu/core-menu.html">
2 <link rel="import" href="chrome://resources/polymer/paper-item/paper-item.html">
3
4 <polymer-element name="cr-settings-menu">
5 <template>
6 <link rel="stylesheet" href="settings_menu.css">
7 <core-menu id="menu" selected="{{selectedId}}" valueattr="id">
8 <template repeat="{{pages}}">
9 <paper-item id="{{PAGE_ID}}">
Jeremy Klein 2015/03/12 02:11:18 nit: Is there any reason we need to use the id att
michaelpg 2015/03/12 06:29:37 Done.
10 <core-icon icon="{{icon}}"></core-icon>
11 {{pageTitle}}
Jeremy Klein 2015/03/12 02:11:18 Shouldn't we add a pageTitle and icon to the a11y
michaelpg 2015/03/12 06:29:37 yes, those should have been there -- i'm doing a b
Jeremy Klein 2015/03/12 06:46:36 No worries, it's hard to untangle lots of commits
12 </paper-item>
13 </template>
14 </core-menu>
15 </template>
16 <script src="settings_menu.js"></script>
17 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698