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-icons/iron-icons.h
tml"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> |
3 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/transform-animation.html"> | |
4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
mation-runner-behavior.html"> | |
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-fab/paper-fab.htm
l"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-fab/paper-fab.htm
l"> |
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tooltip/paper-too
ltip.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-tooltip/paper-too
ltip.html"> |
7 | 5 |
8 <dom-module id="viewer-zoom-button"> | 6 <dom-module id="viewer-zoom-button"> |
9 <link rel="import" type="css" href="../shared-icon-style.css"> | 7 <link rel="import" type="css" href="../shared-icon-style.css"> |
10 <link rel="import" type="css" href="viewer-zoom-button.css"> | 8 <link rel="import" type="css" href="viewer-zoom-button.css"> |
11 <template> | 9 <template> |
12 <paper-fab id="button" mini icon="[[visibleIcon_]]" on-click="fireClick"> | 10 <div id="wrapper"> |
13 </paper-fab> | 11 <paper-fab id="button" mini icon="[[visibleIcon_]]" on-click="fireClick"> |
14 <paper-tooltip for="button">[[visibleTooltip_]]</paper-tooltip> | 12 </paper-fab> |
| 13 <paper-tooltip for="button">[[visibleTooltip_]]</paper-tooltip> |
| 14 </div> |
15 </template> | 15 </template> |
16 </dom-module> | 16 </dom-module> |
17 <script src="viewer-zoom-button.js"></script> | 17 <script src="viewer-zoom-button.js"></script> |
OLD | NEW |