| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright 2016 The LUCI Authors. All rights reserved. | 2 Copyright 2016 The LUCI Authors. All rights reserved. |
| 3 Use of this source code is governed under the Apache License, Version 2.0 | 3 Use of this source code is governed under the Apache License, Version 2.0 |
| 4 that can be found in the LICENSE file. | 4 that can be found in the LICENSE file. |
| 5 | 5 |
| 6 This in an HTML Import-able file that contains the definition | 6 This in an HTML Import-able file that contains the definition |
| 7 of the following elements: | 7 of the following elements: |
| 8 | 8 |
| 9 <task-list> | 9 <task-list> |
| 10 | 10 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 task-filters { | 46 task-filters { |
| 47 margin-bottom: 8px; | 47 margin-bottom: 8px; |
| 48 margin-right: 10px; | 48 margin-right: 10px; |
| 49 } | 49 } |
| 50 .task-list th > span { | 50 .task-list th > span { |
| 51 /* Leave space for sort-toggle*/ | 51 /* Leave space for sort-toggle*/ |
| 52 padding-right: 30px; | 52 padding-right: 30px; |
| 53 } | 53 } |
| 54 </style> | 54 </style> |
| 55 | 55 |
| 56 <url-param name="sort" | 56 <url-param name="s" |
| 57 value="{{_sortstr}}" | 57 value="{{_sortstr}}" |
| 58 default_value="created_ts:desc"> | 58 default_value="created_ts:desc"> |
| 59 </url-param> | 59 </url-param> |
| 60 | 60 |
| 61 <swarming-app | 61 <swarming-app |
| 62 client_id="[[client_id]]" | 62 client_id="[[client_id]]" |
| 63 auth_headers="{{_auth_headers}}" | 63 auth_headers="{{_auth_headers}}" |
| 64 permissions="{{_permissions}}" | 64 permissions="{{_permissions}}" |
| 65 signed_in="{{_signed_in}}" | 65 signed_in="{{_signed_in}}" |
| 66 busy="[[_busy]]" | 66 busy="[[_busy]]" |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 return task.tagMap[col]; | 358 return task.tagMap[col]; |
| 359 }, | 359 }, |
| 360 | 360 |
| 361 _taskClass: function(task) { | 361 _taskClass: function(task) { |
| 362 return this.stateClass(this._column("state", task)); | 362 return this.stateClass(this._column("state", task)); |
| 363 } | 363 } |
| 364 }); | 364 }); |
| 365 })(); | 365 })(); |
| 366 </script> | 366 </script> |
| 367 </dom-module> | 367 </dom-module> |
| OLD | NEW |