Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | |
|
michaelpg
2016/08/09 20:33:08
no HTML copyright headers
Alexander Alekseev
2016/08/10 04:03:45
Done.
| |
| 2 Use of this source code is governed by a BSD-style license that can be | |
| 3 found in the LICENSE file. --> | |
| 4 | |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> | |
|
michaelpg
2016/08/09 20:33:08
import chrome://resources/html/polymer.html
Alexander Alekseev
2016/08/10 04:03:45
Done.
| |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toggle-button/pap er-toggle-button.html"> | |
| 7 | |
| 8 <dom-module name="oobe-a11y-option"> | |
| 9 <template> | |
| 10 <div class="layout horizontal"> | |
| 11 <div id="labelContainer" class="flex layout vertical"> | |
| 12 <div id="titleContainer"> | |
| 13 <content select=".title"></content> | |
| 14 </div> | |
| 15 <div class="display-value" hidden="[[!checked]]"> | |
| 16 <content select=".checked-value"></content> | |
| 17 </div> | |
| 18 <div class="display-value" hidden="[[checked]]"> | |
| 19 <content select=".unchecked-value"></content> | |
| 20 </div> | |
| 21 </div> | |
| 22 <paper-toggle-button checked="{{checked}}"></paper-toggle-button> | |
| 23 </div> | |
| 24 </template> | |
| 25 </dom-module> | |
| 26 | |
|
michaelpg
2016/08/09 20:33:08
nit: remove trailing blank line
Alexander Alekseev
2016/08/10 04:03:45
Done.
| |
| OLD | NEW |