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-button/paper-butt
on.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input
.html"> |
| 6 <link rel="import" href="chrome://md-settings/bluetooth_page/bluetooth_dialog_sh
ared_css.html"> |
| 7 <link rel="import" href="chrome://md-settings/icons.html"> |
6 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> | 8 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> |
7 <link rel="import" href="chrome://md-settings/bluetooth_page/bluetooth_dialog_sh
ared_css.html"> | |
8 | 9 |
9 <dom-module id="settings-bluetooth-pair-device-dialog"> | 10 <dom-module id="settings-bluetooth-pair-device-dialog"> |
10 <template> | 11 <template> |
11 <style include="settings-shared"></style> | 12 <style include="settings-shared"></style> |
12 <style include="bluetooth-dialog-shared"></style> | 13 <style include="bluetooth-dialog-shared"></style> |
13 <div id="dialogOuterDiv" class="layout vertical flex"> | 14 <div id="dialogOuterDiv" class="layout vertical flex"> |
14 <div id="dialogHeaderDiv" class="settings-box layout horizontal center"> | 15 <div id="dialogHeaderDiv" class="settings-box layout horizontal center"> |
15 <span id="dialogTitle" class="flex" | 16 <span id="dialogTitle" class="flex" |
16 i18n-content="bluetoothPairDevicePageTitle"> | 17 i18n-content="bluetoothPairDevicePageTitle"> |
17 </span> | 18 </span> |
18 <paper-icon-button icon="close" on-tap="onCancelTap_" id="close"> | 19 <paper-icon-button id="close" icon="settings:close" |
| 20 on-tap="onCancelTap_"> |
19 </paper-icon-button> | 21 </paper-icon-button> |
20 </div> | 22 </div> |
21 <div id="pairing" | 23 <div id="pairing" |
22 class="settings-blox layout vertical center center-justified flex"> | 24 class="settings-blox layout vertical center center-justified flex"> |
23 <div id="dialogMessage"> | 25 <div id="dialogMessage"> |
24 [[getMessage_(pairingDevice, pairingEvent)]] | 26 [[getMessage_(pairingDevice, pairingEvent)]] |
25 </div> | 27 </div> |
26 <div hidden$="[[!showEnterPincode_(pairingEvent)]]"> | 28 <div hidden$="[[!showEnterPincode_(pairingEvent)]]"> |
27 <paper-input id="pincode" minlength="1" maxlength="16" type="text"> | 29 <paper-input id="pincode" minlength="1" maxlength="16" type="text"> |
28 </div> | 30 </div> |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 on-tap="onDismissTap_"> | 62 on-tap="onDismissTap_"> |
61 </paper-button> | 63 </paper-button> |
62 <paper-button i18n-content="cancel" on-tap="onCancelTap_" | 64 <paper-button i18n-content="cancel" on-tap="onCancelTap_" |
63 hidden$="[[showDismiss_(pairingDevice, pairingEvent)]]"> | 65 hidden$="[[showDismiss_(pairingDevice, pairingEvent)]]"> |
64 </paper-button> | 66 </paper-button> |
65 </div> | 67 </div> |
66 </div> | 68 </div> |
67 </template> | 69 </template> |
68 <script src="bluetooth_pair_device_dialog.js"></script> | 70 <script src="bluetooth_pair_device_dialog.js"></script> |
69 </dom-module> | 71 </dom-module> |
OLD | NEW |