| 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 1244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1255 <div id="file-icon-wrapper" class="icon-wrapper"> | 1255 <div id="file-icon-wrapper" class="icon-wrapper"> |
| 1256 <img class="icon" id="file-icon" alt="" hidden="[[isDangerous_]]"> | 1256 <img class="icon" id="file-icon" alt="" hidden="[[isDangerous_]]"> |
| 1257 <iron-icon id="danger-icon" icon$="[[computeDangerIcon_(isDangerous_, da
ta.danger_type)]]" hidden="[[!isDangerous_]]"></iron-icon> | 1257 <iron-icon id="danger-icon" icon$="[[computeDangerIcon_(isDangerous_, da
ta.danger_type)]]" hidden="[[!isDangerous_]]"></iron-icon> |
| 1258 </div> | 1258 </div> |
| 1259 | 1259 |
| 1260 <div id="details"> | 1260 <div id="details"> |
| 1261 <div id="title-area"><a is="action-link" id="file-link" href="[[data.url
]]" on-tap="onFileLinkTap_" hidden="[[!completelyOnDisk_]]">[[data.file_name]]</
a><span id="name" hidden="[[completelyOnDisk_]]">[[data.file_name]]</span> | 1261 <div id="title-area"><a is="action-link" id="file-link" href="[[data.url
]]" on-tap="onFileLinkTap_" hidden="[[!completelyOnDisk_]]">[[data.file_name]]</
a><span id="name" hidden="[[completelyOnDisk_]]">[[data.file_name]]</span> |
| 1262 <span id="tag">[[computeTag_(data.state, data.last_reason_text, data.f
ile_externally_removed)]]</span> | 1262 <span id="tag">[[computeTag_(data.state, data.last_reason_text, data.f
ile_externally_removed)]]</span> |
| 1263 </div> | 1263 </div> |
| 1264 | 1264 |
| 1265 <a id="url" target="_blank">[[data.url]]</a> | 1265 <a id="url" target="_blank">[[chopUrl_(data.url)]]</a> |
| 1266 | 1266 |
| 1267 <div id="description">[[computeDescription_(data.state, data.danger_type
, data.file_name, data.progress_status_text)]]</div> | 1267 <div id="description">[[computeDescription_(data.state, data.danger_type
, data.file_name, data.progress_status_text)]]</div> |
| 1268 | 1268 |
| 1269 <template is="dom-if" if="[[showProgress_]]"> | 1269 <template is="dom-if" if="[[showProgress_]]"> |
| 1270 <paper-progress id="progress" indeterminate="[[isIndeterminate_(data.p
ercent)]]" value="[[data.percent]]"></paper-progress> | 1270 <paper-progress id="progress" indeterminate="[[isIndeterminate_(data.p
ercent)]]" value="[[data.percent]]"></paper-progress> |
| 1271 </template> | 1271 </template> |
| 1272 | 1272 |
| 1273 <div id="safe" class="controls" hidden="[[isDangerous_]]"> | 1273 <div id="safe" class="controls" hidden="[[isDangerous_]]"> |
| 1274 <a is="action-link" id="show" on-tap="onShowTap_" hidden="[[!completel
yOnDisk_]]">$i18n{controlShowInFolder}</a> | 1274 <a is="action-link" id="show" on-tap="onShowTap_" hidden="[[!completel
yOnDisk_]]">$i18n{controlShowInFolder}</a> |
| 1275 <template is="dom-if" if="[[data.retry]]"> | 1275 <template is="dom-if" if="[[data.retry]]"> |
| (...skipping 2340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3616 <command id="undo-command" shortcut="Meta|z"></command> | 3616 <command id="undo-command" shortcut="Meta|z"></command> |
| 3617 <command id="find-command" shortcut="Meta|f"></command> | 3617 <command id="find-command" shortcut="Meta|f"></command> |
| 3618 </if> | 3618 </if> |
| 3619 <if expr="not is_macosx"> | 3619 <if expr="not is_macosx"> |
| 3620 <command id="clear-all-command" shortcut="Alt|c"></command> | 3620 <command id="clear-all-command" shortcut="Alt|c"></command> |
| 3621 <command id="undo-command" shortcut="Ctrl|z"></command> | 3621 <command id="undo-command" shortcut="Ctrl|z"></command> |
| 3622 <command id="find-command" shortcut="Ctrl|f"></command> | 3622 <command id="find-command" shortcut="Ctrl|f"></command> |
| 3623 </if> | 3623 </if> |
| 3624 <link rel="import" href="chrome://resources/html/polymer.html"> | 3624 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3625 <script src="crisper.js"></script></body></html> | 3625 <script src="crisper.js"></script></body></html> |
| OLD | NEW |