Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/polymer/polymer/polymer.html"> | |
| 2 <link rel="import" href="chrome://resources/polymer/core-animated-pages/core-ani mated-pages.html"> | |
| 3 <link rel="import" href="chrome://resources/polymer/core-transition/core-transit ion.html"> | |
| 4 <link rel="import" href="chrome://resources/polymer/paper-shadow/paper-shadow.ht ml"> | |
| 5 | |
| 6 <polymer-element name="cr-settings-main"> | |
| 7 <template> | |
| 8 <link rel="stylesheet" href="settings_main.css"> | |
| 9 <div id="container"> | |
| 10 <paper-shadow> | |
| 11 <core-animated-pages id="pages" selected="{{selectedPageId}}" | |
|
Kyle Horimoto
2015/03/12 18:57:35
nit: Do you think it would be better to give this
michaelpg
2015/03/13 00:47:01
Good idea. I used 'pageContainer'.
| |
| 12 valueattr="PAGE_ID" transitions="cross-fade"> | |
|
Jeremy Klein
2015/03/12 06:46:36
For the cross-fade, are you just thinking we'll ad
michaelpg
2015/03/13 00:47:01
No, we'll wrap the entire page in a <section cross
Jeremy Klein
2015/03/13 00:49:31
Cool, that works too. Thanks.
| |
| 13 <cr-settings-a11y-page prefs="{{prefs}}"></cr-settings-a11y-page> | |
| 14 </core-animated-pages> | |
| 15 </paper-shadow> | |
| 16 </div> | |
| 17 </template> | |
| 18 <script src="settings_main.js"></script> | |
| 19 </polymer-element> | |
| OLD | NEW |