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-input/paper-input.html "> | |
| 3 | |
| 4 <polymer-element name="page-selector" attributes="pageNo docLength chosenPageNo" > | |
|
benwells
2015/01/27 02:01:41
Is there no line length limit in html?
Alexandre Carlton
2015/01/27 04:04:54
The Google style guide doesn't specify anything ab
| |
| 5 <template> | |
|
benwells
2015/01/27 02:10:56
Should this template tag and the script tag be ind
Alexandre Carlton
2015/01/27 04:04:54
Other viewer-elements (e.g. viewer-button.html) do
benwells
2015/01/27 04:54:51
Ah. Another change of yours I think I just lg'd ha
Alexandre Carlton
2015/01/27 05:34:50
That was in Issue 864753002, I'll fix that now.
| |
| 6 <link rel="stylesheet" href="page-selector.css"> | |
| 7 <paper-input value="{{pageNo}}" committedValue="{{chosenPageNo}}" id="pagesele ctor"></paper-input> | |
|
benwells
2015/01/27 02:01:41
Same here. Is this valid html style?
| |
| 8 <span id="pagelength">/ {{docLength}}</span> | |
| 9 </template> | |
| 10 <script src="page-selector.js"></script> | |
| 11 </polymer-element> | |
| OLD | NEW |