Chromium Code Reviews| 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-page> | 9 <task-page> |
| 10 | 10 |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 245 </tr> | 245 </tr> |
| 246 </template> | 246 </template> |
| 247 <tr> | 247 <tr> |
| 248 <td>Isolated Inputs</td> | 248 <td>Isolated Inputs</td> |
| 249 <td> | 249 <td> |
| 250 <a href$="[[_isolateLink(_request.properties.inputs_ref)]]"> | 250 <a href$="[[_isolateLink(_request.properties.inputs_ref)]]"> |
| 251 [[_request.properties.inputs_ref.isolated]] | 251 [[_request.properties.inputs_ref.isolated]] |
| 252 </a> | 252 </a> |
| 253 </td> | 253 </td> |
| 254 </tr> | 254 </tr> |
| 255 <tr> | |
|
kjlubick
2016/11/02 15:21:41
What does this show if there are no expected outpu
aludwin
2016/11/02 16:23:28
Done.
| |
| 256 <td rowspan$="[[_rowspan(_request.properties.outputs)]]">Expecte d outputs</td> | |
| 257 </tr> | |
| 258 <template is="dom-repeat" items="{{_request.properties.outputs}}" as="output"> | |
| 259 <tr> | |
| 260 <td>[[output]]</td> | |
| 261 </tr> | |
| 262 </template> | |
| 255 <template is="dom-if" if="[[_not(_request_detail)]]"> | 263 <template is="dom-if" if="[[_not(_request_detail)]]"> |
| 256 <tr> | 264 <tr> |
| 257 <td>More Details</td> | 265 <td>More Details</td> |
| 258 <td> | 266 <td> |
| 259 <button on-click="_toggleDetails"> | 267 <button on-click="_toggleDetails"> |
| 260 <iron-icon icon="icons:add-circle-outline"></iron-icon> | 268 <iron-icon icon="icons:add-circle-outline"></iron-icon> |
| 261 </button> | 269 </button> |
| 262 </td> | 270 </td> |
| 263 </tr> | 271 </tr> |
| 264 </template> | 272 </template> |
| (...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 754 _wasPickedUp: function(result) { | 762 _wasPickedUp: function(result) { |
| 755 return result && result.state !== this.PENDING && result.state !== this. CANCELED && result.state != this.EXPIRED; | 763 return result && result.state !== this.PENDING && result.state !== this. CANCELED && result.state != this.EXPIRED; |
| 756 }, | 764 }, |
| 757 | 765 |
| 758 _wasNotPickedUp: function(result) { | 766 _wasNotPickedUp: function(result) { |
| 759 return result && !this._wasPickedUp(result); | 767 return result && !this._wasPickedUp(result); |
| 760 }, | 768 }, |
| 761 }); | 769 }); |
| 762 })(); | 770 })(); |
| 763 </script> | 771 </script> |
| 764 </dom-module> | 772 </dom-module> |
| OLD | NEW |