| OLD | NEW |
| 1 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | 1 <!-- Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 Use of this source code is governed by a BSD-style license that can be | 2 Use of this source code is governed by a BSD-style license that can be |
| 3 found in the LICENSE file. --> | 3 found in the LICENSE file. --> |
| 4 | 4 |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> |
| 7 | 7 |
| 8 <!-- | 8 <!-- |
| 9 OOBE Welcome screen | 9 OOBE Welcome screen |
| 10 --> | 10 --> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 <div class="flex"></div> | 21 <div class="flex"></div> |
| 22 <div id="buttons" class="layout horizontal center"> | 22 <div id="buttons" class="layout horizontal center"> |
| 23 <oobe-welcome-secondary-button icon="icons:language" | 23 <oobe-welcome-secondary-button icon="icons:language" |
| 24 on-tap="onLanguageClicked_"> | 24 on-tap="onLanguageClicked_"> |
| 25 <div>[[currentLanguage]]</div> | 25 <div>[[currentLanguage]]</div> |
| 26 </oobe-welcome-secondary-button> | 26 </oobe-welcome-secondary-button> |
| 27 <oobe-welcome-secondary-button icon="icons:accessibility" | 27 <oobe-welcome-secondary-button icon="icons:accessibility" |
| 28 on-tap="onAccessibilityClicked_"> | 28 on-tap="onAccessibilityClicked_"> |
| 29 <div i18n-content="accessibilityLink"></div> | 29 <div i18n-content="accessibilityLink"></div> |
| 30 </oobe-welcome-secondary-button> | 30 </oobe-welcome-secondary-button> |
| 31 <oobe-welcome-secondary-button icon="oobe-welcome-64:timezone" |
| 32 on-tap="onTimezoneClicked_" hidden="[[!timezoneButtonVisible]]"> |
| 33 <div i18n-content="timezoneButtonText"></div> |
| 34 </oobe-welcome-secondary-button> |
| 31 <div class="flex"></div> | 35 <div class="flex"></div> |
| 32 <oobe-text-button inverse on-tap="onNextClicked_"> | 36 <oobe-text-button inverse on-tap="onNextClicked_"> |
| 33 <div i18n-content="welcomeNextButtonText"></div> | 37 <div i18n-content="welcomeNextButtonText"></div> |
| 34 </oobe-text-button> | 38 </oobe-text-button> |
| 35 </div> | 39 </div> |
| 36 <div id="bottom-margin"></div> | 40 <div id="bottom-margin"></div> |
| 37 </div> | 41 </div> |
| 38 <div class="vertical-margin"></div> | 42 <div class="vertical-margin"></div> |
| 39 </div> | 43 </div> |
| 40 </template> | 44 </template> |
| 41 </dom-module> | 45 </dom-module> |
| OLD | NEW |