| 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/neon-animation/web-anim
ations.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/web-anim
ations.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-ma
terial.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-material/paper-ma
terial.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 5 | 5 |
| 6 <dom-module id="viewer-toolbar-dropdown"> | 6 <dom-module id="viewer-toolbar-dropdown"> |
| 7 <link rel="import" type="css" href="../shared-icon-style.css"> |
| 7 <link rel="import" type="css" href="viewer-toolbar-dropdown.css"> | 8 <link rel="import" type="css" href="viewer-toolbar-dropdown.css"> |
| 8 <template> | 9 <template> |
| 9 <div on-click="toggleDropdown" id="icon"> | 10 <div on-click="toggleDropdown" id="icon"> |
| 10 <paper-icon-button icon="[[dropdownIcon]]"></paper-icon-button> | 11 <paper-icon-button icon="[[dropdownIcon]]"></paper-icon-button> |
| 11 <iron-icon icon="arrow-drop-down" id="arrow"></iron-icon> | 12 <iron-icon icon="arrow-drop-down" id="arrow"></iron-icon> |
| 12 </div> | 13 </div> |
| 13 | 14 |
| 14 <div id="container"> | 15 <div id="container"> |
| 15 <paper-material id="dropdown" style="display: none"> | 16 <paper-material id="dropdown" style="display: none"> |
| 16 <h1>{{header}}</h1> | 17 <h1>{{header}}</h1> |
| 17 <div id="scroll-container"> | 18 <div id="scroll-container"> |
| 18 <content></content> | 19 <content></content> |
| 19 </div> | 20 </div> |
| 20 </paper-material> | 21 </paper-material> |
| 21 </div> | 22 </div> |
| 22 </template> | 23 </template> |
| 23 </dom-module> | 24 </dom-module> |
| 24 | 25 |
| 25 <script src="viewer-toolbar-dropdown.js"></script> | 26 <script src="viewer-toolbar-dropdown.js"></script> |
| OLD | NEW |