Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/polymer/polymer/polymer.html"> | |
|
raymes
2015/01/22 22:31:55
do you need this? Will it get included in the top
Alexandre Carlton
2015/01/22 22:50:29
The tutorial (https://www.polymer-project.org/docs
| |
| 2 <link rel="import" href="chrome://resources/polymer/paper-input/paper-input.html "> | |
| 3 | |
| 4 <polymer-element name="page-selector" attributes="pageNo docLength chosenPageNo" > | |
| 5 <template> | |
| 6 <link rel="stylesheet" href="page-selector.css"> | |
| 7 <paper-input value="{{pageNo}}" committedValue="{{chosenPageNo}}" id="pagesele ctor"></paper-input> | |
| 8 <span id="pagelength">/ {{docLength}}</span> | |
| 9 </template> | |
| 10 <script src="page-selector.js"></script> | |
| 11 </polymer-element> | |
| OLD | NEW |