Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/polymer/polymer/polymer.html"> | |
| 2 <link rel="import" href="chrome://resources/polymer/paper-dialog/paper-dialog.ht ml"> | |
| 3 | |
| 4 <polymer-element name="pdf-pane" attributes="heading"> | |
| 5 <template> | |
| 6 <link rel="stylesheet" href="pdf-pane.css"> | |
| 7 <!-- We set layered to false so that we can apply css in our file. --> | |
| 8 <paper-dialog id="pdialog" heading="{{heading}}" transition="core-transition -right" class="scrolling pane" layered="false"> | |
|
raymes
2015/01/23 00:16:46
Can we make the id "paper-dialog"?
Alexandre Carlton
2015/01/23 00:25:11
Polymer allows access to internal elements through
| |
| 9 <hr> | |
| 10 <div id="reset-content"> | |
| 11 <content></content> | |
| 12 </div> | |
| 13 </paper-dialog> | |
| 14 </template> | |
| 15 <script src="pdf-pane.js"></script> | |
| 16 </polymer-element> | |
| OLD | NEW |