Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap er-toggle-button.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap er-toggle-button.html"> |
| 4 | 4 |
| 5 <dom-module name="oobe-a11y-option"> | 5 <dom-module name="oobe-a11y-option"> |
| 6 <template> | 6 <template> |
| 7 <div class="layout horizontal"> | 7 <link rel="stylesheet" href="oobe_a11y_option.css"> |
| 8 <div id="labelContainer" class="flex layout vertical"> | 8 <div id="element-box" class="layout horizontal"> |
|
michaelpg
2016/08/18 19:40:58
elementBox for consistency with other IDs
Alexander Alekseev
2016/08/19 06:00:05
Done.
| |
| 9 <div class="flex layout vertical center-justified"> | |
| 9 <div id="titleContainer"> | 10 <div id="titleContainer"> |
| 10 <content select=".title"></content> | 11 <content select=".title"></content> |
| 11 </div> | 12 </div> |
| 12 <div class="display-value" hidden="[[!checked]]"> | 13 <div class="display-value" hidden="[[!checked]]"> |
| 13 <content select=".checked-value"></content> | 14 <content select=".checked-value"></content> |
| 14 </div> | 15 </div> |
| 15 <div class="display-value" hidden="[[checked]]"> | 16 <div class="display-value" hidden="[[checked]]"> |
| 16 <content select=".unchecked-value"></content> | 17 <content select=".unchecked-value"></content> |
| 17 </div> | 18 </div> |
| 18 </div> | 19 </div> |
| 19 <paper-toggle-button checked="{{checked}}"></paper-toggle-button> | 20 <paper-toggle-button checked="{{checked}}"></paper-toggle-button> |
| 20 </div> | 21 </div> |
| 21 </template> | 22 </template> |
| 22 </dom-module> | 23 </dom-module> |
| OLD | NEW |