| OLD | NEW |
| 1 <!DOCTYPE html><html dir="$i18n{textdirection}" lang="$i18n{language}"><head><!-
- | 1 <!DOCTYPE html><html dir="$i18n{textdirection}" lang="$i18n{language}"><head><!-
- |
| 2 @license | 2 @license |
| 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
| 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
| 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
| 7 Code distributed by Google as part of the polymer project is also | 7 Code distributed by Google as part of the polymer project is also |
| 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 9 --><!-- | 9 --><!-- |
| 10 @license | 10 @license |
| (...skipping 3038 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3049 | 3049 |
| 3050 </style> | 3050 </style> |
| 3051 <template is="dom-if" if="[[isSpinnerShown_]]"> | 3051 <template is="dom-if" if="[[isSpinnerShown_]]"> |
| 3052 <paper-spinner-lite active=""> | 3052 <paper-spinner-lite active=""> |
| 3053 </paper-spinner-lite> | 3053 </paper-spinner-lite> |
| 3054 </template> | 3054 </template> |
| 3055 <paper-icon-button id="icon" icon="cr:search" title="[[label]]" tabindex$="[
[computeIconTabIndex_(narrow)]]"> | 3055 <paper-icon-button id="icon" icon="cr:search" title="[[label]]" tabindex$="[
[computeIconTabIndex_(narrow)]]"> |
| 3056 </paper-icon-button> | 3056 </paper-icon-button> |
| 3057 <div id="searchTerm"> | 3057 <div id="searchTerm"> |
| 3058 <label id="prompt" for="searchInput">[[label]]</label> | 3058 <label id="prompt" for="searchInput">[[label]]</label> |
| 3059 <input id="searchInput" type="search" on-input="onSearchInput_" on-search=
"onSearchTermSearch" on-keydown="onSearchTermKeydown" on-focus="onInputFocus_" o
n-blur="onInputBlur_" incremental="" autofocus=""> | 3059 <input id="searchInput" type="search" on-input="onSearchInput_" on-search=
"onSearchTermSearch" on-keydown="onSearchTermKeydown_" on-focus="onInputFocus_"
on-blur="onInputBlur_" incremental="" autofocus=""> |
| 3060 | 3060 |
| 3061 </div> | 3061 </div> |
| 3062 <template is="dom-if" if="[[hasSearchText_]]"> | 3062 <template is="dom-if" if="[[hasSearchText_]]"> |
| 3063 <paper-icon-button icon="cr:cancel" id="clearSearch" title="[[clearLabel]]
" on-tap="clearSearch_"> | 3063 <paper-icon-button icon="cr:cancel" id="clearSearch" title="[[clearLabel]]
" on-tap="clearSearch_"> |
| 3064 </paper-icon-button> | 3064 </paper-icon-button> |
| 3065 </template> | 3065 </template> |
| 3066 </template> | 3066 </template> |
| 3067 </dom-module> | 3067 </dom-module> |
| 3068 <dom-module id="cr-toolbar" assetpath="chrome://resources/cr_elements/cr_toolbar
/" css-build="shadow"> | 3068 <dom-module id="cr-toolbar" assetpath="chrome://resources/cr_elements/cr_toolbar
/" css-build="shadow"> |
| 3069 <template> | 3069 <template> |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3403 <command id="undo-command" shortcut="Meta|z"></command> | 3403 <command id="undo-command" shortcut="Meta|z"></command> |
| 3404 <command id="find-command" shortcut="Meta|f"></command> | 3404 <command id="find-command" shortcut="Meta|f"></command> |
| 3405 </if> | 3405 </if> |
| 3406 <if expr="not is_macosx"> | 3406 <if expr="not is_macosx"> |
| 3407 <command id="clear-all-command" shortcut="Alt|c"></command> | 3407 <command id="clear-all-command" shortcut="Alt|c"></command> |
| 3408 <command id="undo-command" shortcut="Ctrl|z"></command> | 3408 <command id="undo-command" shortcut="Ctrl|z"></command> |
| 3409 <command id="find-command" shortcut="Ctrl|f"></command> | 3409 <command id="find-command" shortcut="Ctrl|f"></command> |
| 3410 </if> | 3410 </if> |
| 3411 <link rel="import" href="chrome://resources/html/polymer.html"> | 3411 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3412 <script src="crisper.js"></script></body></html> | 3412 <script src="crisper.js"></script></body></html> |
| OLD | NEW |