| Index: chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.html
|
| diff --git a/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.html b/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.html
|
| index 80a33f7eba19ec277a4dd503e83c7642b7d62608..50db0e333a49950844b63bce5f98bf9d520324d0 100644
|
| --- a/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.html
|
| +++ b/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_dialog.html
|
| @@ -103,27 +103,27 @@
|
| <div id="pairing" class="settings-box first layout vertical center
|
| center-justified">
|
| <div class="dialog-message">
|
| - [[getMessage_(pairingDevice, pairingEvent)]]
|
| + [[getMessage_(pairingDevice, pairingEvent_)]]
|
| </div>
|
| - <div hidden$="[[!showEnterPincode_(pairingEvent)]]">
|
| + <div hidden$="[[!showEnterPincode_(pairingEvent_)]]">
|
| <paper-input id="pincode" minlength="1" maxlength="16"
|
| type="text" auto-validate value="{{pinOrPass}}">
|
| </paper-input>
|
| </div>
|
| - <div hidden$="[[!showEnterPasskey_(pairingEvent)]]">
|
| + <div hidden$="[[!showEnterPasskey_(pairingEvent_)]]">
|
| <paper-input id="passkey" minlength="6" maxlength="6"
|
| type="text" auto-validate value="{{pinOrPass}}">
|
| </paper-input>
|
| </div>
|
| <div id="pinDiv" class="layout horizontal center center-justified"
|
| - hidden="[[!showDisplayPassOrPin_(pairingEvent)]]">
|
| + hidden="[[!showDisplayPassOrPin_(pairingEvent_)]]">
|
| <template is="dom-repeat" items="[[digits]]">
|
| - <span class$="[[getPinClass_(index, pairingEvent)]]">
|
| - [[getPinDigit_(index, pairingEvent)]]
|
| + <span class$="[[getPinClass_(index, pairingEvent_)]]">
|
| + [[getPinDigit_(index, pairingEvent_)]]
|
| </span>
|
| </template>
|
| - <span class$="[[getPinClass_(-1, pairingEvent)]]"
|
| - hidden="[[showAcceptReject_(pairingEvent)]]">
|
| + <span class$="[[getPinClass_(-1, pairingEvent_)]]"
|
| + hidden="[[showAcceptReject_(pairingEvent_)]]">
|
| $i18n{bluetoothEnterKey}
|
| </span>
|
| </div>
|
| @@ -151,16 +151,17 @@
|
| </paper-button>
|
| </template>
|
| <template is="dom-if" if="[[isDialogType_('pairDevice', dialogId)]]">
|
| - <paper-button hidden$="[[!showAcceptReject_(pairingEvent)]]"
|
| + <paper-button hidden$="[[!showAcceptReject_(pairingEvent_)]]"
|
| on-tap="onAcceptTap_">$i18n{bluetoothAccept}</paper-button>
|
| - <paper-button hidden$="[[!showAcceptReject_(pairingEvent)]]"
|
| + <paper-button hidden$="[[!showAcceptReject_(pairingEvent_)]]"
|
| on-tap="onRejectTap_">$i18n{bluetoothReject}</paper-button>
|
| - <paper-button hidden$="[[!showConnect_(pairingEvent)]]"
|
| - disabled="[[!enableConnect_(pairingEvent, pinOrPass)]]"
|
| + <paper-button hidden$="[[!showConnect_(pairingEvent_)]]"
|
| + disabled="[[!enableConnect_(pairingEvent_, pinOrPass)]]"
|
| on-tap="onConnectTap_">$i18n{bluetoothPair}</paper-button>
|
| - <paper-button hidden$="[[!showDismiss_(pairingDevice, pairingEvent)]]"
|
| + <paper-button
|
| + hidden$="[[!showDismiss_(pairingDevice, pairingEvent_)]]"
|
| on-tap="close">$i18n{bluetoothDismiss}</paper-button>
|
| - <paper-button hidden$="[[showDismiss_(pairingDevice, pairingEvent)]]"
|
| + <paper-button hidden$="[[showDismiss_(pairingDevice, pairingEvent_)]]"
|
| on-tap="onCancelTap_">
|
| $i18n{cancel}
|
| </paper-button>
|
|
|