OLD | NEW |
1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> | 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html"> |
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-shadow-flex-layout.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-shadow-flex-layout.html"> |
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/image-icons.
html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/image-icons.
html"> |
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> |
5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-down-animation.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-down-animation.html"> |
6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-up-animation.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-up-animation.html"> |
7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
mation-runner-behavior.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
mation-runner-behavior.html"> |
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-ma
terial.html"> | |
10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-pr
ogress.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-progress/paper-pr
ogress.html"> |
11 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toolbar/paper-too
lbar.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toolbar/paper-too
lbar.html"> |
12 <link rel="import" href="../viewer-bookmarks-content/viewer-bookmarks-content.ht
ml"> | 11 <link rel="import" href="../viewer-bookmarks-content/viewer-bookmarks-content.ht
ml"> |
13 <link rel="import" href="../viewer-page-selector/viewer-page-selector.html"> | 12 <link rel="import" href="../viewer-page-selector/viewer-page-selector.html"> |
14 <link rel="import" href="../viewer-toolbar-dropdown/viewer-toolbar-dropdown.html
"> | 13 <link rel="import" href="../viewer-toolbar-dropdown/viewer-toolbar-dropdown.html
"> |
15 | 14 |
16 <dom-module id="viewer-pdf-toolbar"> | 15 <dom-module id="viewer-pdf-toolbar"> |
| 16 <link rel="import" type="css" href="../shared-icon-style.css"> |
17 <link rel="import" type="css" href="viewer-pdf-toolbar.css"> | 17 <link rel="import" type="css" href="viewer-pdf-toolbar.css"> |
18 <template> | 18 <template> |
19 <paper-material class="fit"></paper-material> | |
20 | |
21 <paper-progress value="{{loadProgress}}"></paper-progress> | 19 <paper-progress value="{{loadProgress}}"></paper-progress> |
22 | 20 |
23 <paper-toolbar> | 21 <paper-toolbar> |
24 <div id="aligner" class="horizontal layout center"> | 22 <div id="aligner" class="horizontal layout center"> |
25 <span id="title" class="invisible flex-5" title="{{docTitle}}"> | 23 <span id="title" class="invisible flex-5" title="{{docTitle}}"> |
26 <span>{{docTitle}}</span> | 24 <span>{{docTitle}}</span> |
27 </span> | 25 </span> |
28 | 26 |
29 <div class="flex-1" id="pageselector-container"> | 27 <div class="flex-1" id="pageselector-container"> |
30 <viewer-page-selector id="pageselector" class="invisible" | 28 <viewer-page-selector id="pageselector" class="invisible" |
(...skipping 20 matching lines...) Expand all Loading... |
51 <paper-icon-button icon="save" | 49 <paper-icon-button icon="save" |
52 on-click="save"></paper-icon-button> | 50 on-click="save"></paper-icon-button> |
53 <paper-icon-button icon="print" | 51 <paper-icon-button icon="print" |
54 on-click="print"></paper-icon-button> | 52 on-click="print"></paper-icon-button> |
55 </div> | 53 </div> |
56 </div> | 54 </div> |
57 </paper-toolbar> | 55 </paper-toolbar> |
58 </template> | 56 </template> |
59 </dom-module> | 57 </dom-module> |
60 <script src="viewer-pdf-toolbar.js"></script> | 58 <script src="viewer-pdf-toolbar.js"></script> |
OLD | NEW |