| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 This in an HTML Import-able file that contains the definition | 2 This in an HTML Import-able file that contains the definition |
| 3 of the following elements: | 3 of the following elements: |
| 4 | 4 |
| 5 <pageable-data> | 5 <pageable-data> |
| 6 | 6 |
| 7 The pageable-data element allows for easy paging of data from the swarming | 7 The pageable-data element allows for easy paging of data from the swarming |
| 8 server. It displays a button to the user to go fetch more data, which will | 8 server. It displays a button to the user to go fetch more data, which will |
| 9 be appended to the output, rather than replaced, which is typical in | 9 be appended to the output, rather than replaced, which is typical in |
| 10 elements like iron-ajax. | 10 elements like iron-ajax. |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 }.bind(this)); | 162 }.bind(this)); |
| 163 }, | 163 }, |
| 164 | 164 |
| 165 _noMore: function(cursor) { | 165 _noMore: function(cursor) { |
| 166 return cursor === END; | 166 return cursor === END; |
| 167 } | 167 } |
| 168 }); | 168 }); |
| 169 })(); | 169 })(); |
| 170 </script> | 170 </script> |
| 171 </dom-module> | 171 </dom-module> |
| OLD | NEW |