| 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 <bot-page-summary> | 5 <bot-page-summary> |
| 6 | 6 |
| 7 Usage: | 7 Usage: |
| 8 | 8 |
| 9 <bot-page-summary></bot-page-summary> | 9 <bot-page-summary></bot-page-summary> |
| 10 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 Methods: | 28 Methods: |
| 29 None. | 29 None. |
| 30 | 30 |
| 31 Events: | 31 Events: |
| 32 None. | 32 None. |
| 33 --> | 33 --> |
| 34 <link rel="import" href="/res/imp/bower_components/paper-checkbox/paper-checkbox
.html"> | 34 <link rel="import" href="/res/imp/bower_components/paper-checkbox/paper-checkbox
.html"> |
| 35 | 35 |
| 36 <link rel="import" href="/res/imp/common/single-page-style.html"> | 36 <link rel="import" href="/res/imp/common/single-page-style.html"> |
| 37 <link rel="import" href="/res/imp/common/sort-toggle.html"> | 37 <link rel="import" href="/res/imp/shared/sort-toggle.html"> |
| 38 <link rel="import" href="/res/imp/common/url-param.html"> | 38 <link rel="import" href="/res/imp/shared/url-param.html"> |
| 39 | 39 |
| 40 <link rel="import" href="bot-page-shared-behavior.html"> | 40 <link rel="import" href="bot-page-shared-behavior.html"> |
| 41 | 41 |
| 42 <dom-module id="bot-page-summary"> | 42 <dom-module id="bot-page-summary"> |
| 43 <template> | 43 <template> |
| 44 <style include="single-page-style"> | 44 <style include="single-page-style"> |
| 45 .wrapper { | 45 .wrapper { |
| 46 display: table; | 46 display: table; |
| 47 margin-left: auto; | 47 margin-left: auto; |
| 48 margin-bottom: 10px; | 48 margin-bottom: 10px; |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 } | 391 } |
| 392 e.preventDefault(); | 392 e.preventDefault(); |
| 393 e.stopPropagation(); | 393 e.stopPropagation(); |
| 394 this.set("_sortstr", e.detail.name + ":" + e.detail.direction); | 394 this.set("_sortstr", e.detail.name + ":" + e.detail.direction); |
| 395 }, | 395 }, |
| 396 | 396 |
| 397 }); | 397 }); |
| 398 })(); | 398 })(); |
| 399 </script> | 399 </script> |
| 400 </dom-module> | 400 </dom-module> |
| OLD | NEW |