| OLD | NEW |
| 1 <html><head><!-- | 1 <html><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 1906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1917 | 1917 |
| 1918 </style> | 1918 </style> |
| 1919 <template is="dom-if" if="[[isSpinnerShown_]]"> | 1919 <template is="dom-if" if="[[isSpinnerShown_]]"> |
| 1920 <paper-spinner-lite active=""> | 1920 <paper-spinner-lite active=""> |
| 1921 </paper-spinner-lite> | 1921 </paper-spinner-lite> |
| 1922 </template> | 1922 </template> |
| 1923 <paper-icon-button id="icon" icon="cr:search" title="[[label]]" tabindex$="[
[computeIconTabIndex_(narrow)]]"> | 1923 <paper-icon-button id="icon" icon="cr:search" title="[[label]]" tabindex$="[
[computeIconTabIndex_(narrow)]]"> |
| 1924 </paper-icon-button> | 1924 </paper-icon-button> |
| 1925 <div id="searchTerm"> | 1925 <div id="searchTerm"> |
| 1926 <label id="prompt" for="searchInput">[[label]]</label> | 1926 <label id="prompt" for="searchInput">[[label]]</label> |
| 1927 <input id="searchInput" type="search" on-input="onSearchInput_" on-search=
"onSearchTermSearch" on-keydown="onSearchTermKeydown" on-focus="onInputFocus_" o
n-blur="onInputBlur_" incremental="" autofocus=""> | 1927 <input id="searchInput" type="search" on-input="onSearchInput_" on-search=
"onSearchTermSearch" on-keydown="onSearchTermKeydown_" on-focus="onInputFocus_"
on-blur="onInputBlur_" incremental="" autofocus=""> |
| 1928 | 1928 |
| 1929 </div> | 1929 </div> |
| 1930 <template is="dom-if" if="[[hasSearchText_]]"> | 1930 <template is="dom-if" if="[[hasSearchText_]]"> |
| 1931 <paper-icon-button icon="cr:cancel" id="clearSearch" title="[[clearLabel]]
" on-tap="clearSearch_"> | 1931 <paper-icon-button icon="cr:cancel" id="clearSearch" title="[[clearLabel]]
" on-tap="clearSearch_"> |
| 1932 </paper-icon-button> | 1932 </paper-icon-button> |
| 1933 </template> | 1933 </template> |
| 1934 </template> | 1934 </template> |
| 1935 </dom-module> | 1935 </dom-module> |
| 1936 <dom-module id="cr-toolbar" assetpath="chrome://resources/cr_elements/cr_toolbar
/" css-build="shadow"> | 1936 <dom-module id="cr-toolbar" assetpath="chrome://resources/cr_elements/cr_toolbar
/" css-build="shadow"> |
| 1937 <template> | 1937 <template> |
| (...skipping 1833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3771 <history-side-bar id="drawer-side-bar" selected-page="{{selectedPage_}}"
show-footer="[[showSidebarFooter]]" drawer=""> | 3771 <history-side-bar id="drawer-side-bar" selected-page="{{selectedPage_}}"
show-footer="[[showSidebarFooter]]" drawer=""> |
| 3772 </history-side-bar> | 3772 </history-side-bar> |
| 3773 </app-drawer> | 3773 </app-drawer> |
| 3774 </template> | 3774 </template> |
| 3775 | 3775 |
| 3776 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}"
> | 3776 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}"
> |
| 3777 </iron-media-query> | 3777 </iron-media-query> |
| 3778 </template> | 3778 </template> |
| 3779 </dom-module> | 3779 </dom-module> |
| 3780 <script src="app.crisper.js"></script></body></html> | 3780 <script src="app.crisper.js"></script></body></html> |
| OLD | NEW |