| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/assert.html"> | 1 <link rel="import" href="chrome://resources/html/assert.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/html/i18n_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 4 <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-button/paper-butt
on.html"> |
| 5 <link rel="import" href="../i18n_setup.html"> | 5 <link rel="import" href="../i18n_setup.html"> |
| 6 <link rel="import" href="../icons.html"> | 6 <link rel="import" href="../icons.html"> |
| 7 <link rel="import" href="lock_screen_constants.html"> | 7 <link rel="import" href="lock_screen_constants.html"> |
| 8 <link rel="import" href="pin_keyboard.html"> | 8 <link rel="import" href="pin_keyboard.html"> |
| 9 <link rel="import" href="../settings_shared_css.html"> | 9 <link rel="import" href="../settings_shared_css.html"> |
| 10 | 10 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 <iron-icon icon="settings:warning"></iron-icon> | 43 <iron-icon icon="settings:warning"></iron-icon> |
| 44 <span class="middle">[[problemMessage_]]</span> | 44 <span class="middle">[[problemMessage_]]</span> |
| 45 </div> | 45 </div> |
| 46 | 46 |
| 47 <!-- Pin keyboard --> | 47 <!-- Pin keyboard --> |
| 48 <div id="pinKeyboardDiv" class="settings-box continuation"> | 48 <div id="pinKeyboardDiv" class="settings-box continuation"> |
| 49 <pin-keyboard id="pinKeyboard" on-pin-change="onPinChange_" | 49 <pin-keyboard id="pinKeyboard" on-pin-change="onPinChange_" |
| 50 on-submit="onPinSubmit_" value="{{pinKeyboardValue_}}"> | 50 on-submit="onPinSubmit_" value="{{pinKeyboardValue_}}"> |
| 51 </pin-keyboard> | 51 </pin-keyboard> |
| 52 </div> | 52 </div> |
| 53 </div> |
| 54 <div class="button-container"> |
| 55 <paper-button class="cancel-button" on-tap="onCancelTap_"> |
| 56 $i18n{cancel} |
| 57 </paper-button> |
| 53 | 58 |
| 54 <div class="button-strip"> | 59 <paper-button class="action-button" on-tap="onPinSubmit_" |
| 55 <paper-button class="cancel-button" on-tap="onCancelTap_"> | 60 disabled$="[[!enableSubmit_]]"> |
| 56 $i18n{cancel} | 61 <span>[[getContinueMessage_(isConfirmStep_)]]</span> |
| 57 </paper-button> | 62 </paper-button> |
| 58 | |
| 59 <paper-button class="action-button" on-tap="onPinSubmit_" | |
| 60 disabled$="[[!enableSubmit_]]"> | |
| 61 <span>[[getContinueMessage_(isConfirmStep_)]]</span> | |
| 62 </paper-button> | |
| 63 </div> | |
| 64 </div> | 63 </div> |
| 65 </dialog> | 64 </dialog> |
| 66 </template> | 65 </template> |
| 67 | 66 |
| 68 <script src="setup_pin_dialog.js"></script> | 67 <script src="setup_pin_dialog.js"></script> |
| 69 </dom-module> | 68 </dom-module> |
| OLD | NEW |