| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/cr.html"> | 1 <link rel="import" href="chrome://resources/html/cr.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <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/iron-flex-layout/classe
s/iron-flex-layout.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele
ctor.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele
ctor.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi
nner.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi
nner.html"> |
| 9 <link rel="import" href="chrome://md-settings/bluetooth_page/bluetooth_device_li
st_item.html"> | 9 <link rel="import" href="chrome://md-settings/bluetooth_page/bluetooth_device_li
st_item.html"> |
| 10 <link rel="import" href="chrome://md-settings/icons.html"> | 10 <link rel="import" href="chrome://md-settings/icons.html"> |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 </span> | 131 </span> |
| 132 </template> | 132 </template> |
| 133 <span class$="[[getPinClass_(pairingEvent, -1)]]" | 133 <span class$="[[getPinClass_(pairingEvent, -1)]]" |
| 134 hidden="[[showAcceptReject_(pairingEvent)]]"> | 134 hidden="[[showAcceptReject_(pairingEvent)]]"> |
| 135 $i18n{bluetoothEnterKey} | 135 $i18n{bluetoothEnterKey} |
| 136 </span> | 136 </span> |
| 137 </div> | 137 </div> |
| 138 </div> | 138 </div> |
| 139 </template> | 139 </template> |
| 140 </div> | 140 </div> |
| 141 <div class="button-container"> | 141 <div class="buttons"> |
| 142 <template is="dom-if" if="[[isDialogType_(dialogType, 'addDevice')]]"> | 142 <template is="dom-if" if="[[isDialogType_(dialogType, 'addDevice')]]"> |
| 143 <div id="scanning" class="layout horizontal center flex" | 143 <div id="scanning" class="layout horizontal center flex" |
| 144 hidden$="[[!adapterState.discovering]]"> | 144 hidden$="[[!adapterState.discovering]]"> |
| 145 <paper-spinner active="[[adapterState.discovering]]"> | 145 <paper-spinner active="[[adapterState.discovering]]"> |
| 146 </paper-spinner> | 146 </paper-spinner> |
| 147 <span>$i18n{bluetoothScanning}</span> | 147 <span>$i18n{bluetoothScanning}</span> |
| 148 </div> | 148 </div> |
| 149 <paper-button class="end-justified" on-tap="onCancelTap_"> | 149 <paper-button class="end-justified" on-tap="onCancelTap_"> |
| 150 $i18n{cancel} | 150 $i18n{cancel} |
| 151 </paper-button> | 151 </paper-button> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 162 <paper-button hidden$="[[showDismiss_(pairingDevice, pairingEvent)]]" | 162 <paper-button hidden$="[[showDismiss_(pairingDevice, pairingEvent)]]" |
| 163 on-tap="onCancelTap_"> | 163 on-tap="onCancelTap_"> |
| 164 $i18n{cancel} | 164 $i18n{cancel} |
| 165 </paper-button> | 165 </paper-button> |
| 166 </template> | 166 </template> |
| 167 </div> | 167 </div> |
| 168 </settings-dialog> | 168 </settings-dialog> |
| 169 </template> | 169 </template> |
| 170 <script src="chrome://md-settings/bluetooth_page/bluetooth_device_dialog.js"><
/script> | 170 <script src="chrome://md-settings/bluetooth_page/bluetooth_device_dialog.js"><
/script> |
| 171 </dom-module> | 171 </dom-module> |
| OLD | NEW |