| 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 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 <link rel="import" href="/res/imp/bower_components/iron-flex-layout/iron-flex-la
yout-classes.html"> | 27 <link rel="import" href="/res/imp/bower_components/iron-flex-layout/iron-flex-la
yout-classes.html"> |
| 28 <link rel="import" href="/res/imp/bower_components/paper-button/paper-button.htm
l"> | 28 <link rel="import" href="/res/imp/bower_components/paper-button/paper-button.htm
l"> |
| 29 <link rel="import" href="/res/imp/bower_components/paper-dialog/paper-dialog.htm
l"> | 29 <link rel="import" href="/res/imp/bower_components/paper-dialog/paper-dialog.htm
l"> |
| 30 <link rel="import" href="/res/imp/bower_components/paper-time-picker/paper-time-
picker.html"> | 30 <link rel="import" href="/res/imp/bower_components/paper-time-picker/paper-time-
picker.html"> |
| 31 <link rel="import" href="/res/imp/bower_components/polymer-paper-date-picker/pap
er-date-picker.html"> | 31 <link rel="import" href="/res/imp/bower_components/polymer-paper-date-picker/pap
er-date-picker.html"> |
| 32 <link rel="import" href="/res/imp/bower_components/polymer/polymer.html"> | 32 <link rel="import" href="/res/imp/bower_components/polymer/polymer.html"> |
| 33 | 33 |
| 34 <link rel="import" href="/res/imp/common/dynamic-table-behavior.html"> | 34 <link rel="import" href="/res/imp/common/dynamic-table-behavior.html"> |
| 35 <link rel="import" href="/res/imp/common/pageable-data.html"> | 35 <link rel="import" href="/res/imp/common/pageable-data.html"> |
| 36 <link rel="import" href="/res/imp/common/sort-toggle.html"> | |
| 37 <link rel="import" href="/res/imp/common/swarming-app.html"> | 36 <link rel="import" href="/res/imp/common/swarming-app.html"> |
| 38 <link rel="import" href="/res/imp/common/task-behavior.html"> | 37 <link rel="import" href="/res/imp/common/task-behavior.html"> |
| 39 <link rel="import" href="/res/imp/common/url-param.html"> | 38 <link rel="import" href="/res/imp/shared/sort-toggle.html"> |
| 39 <link rel="import" href="/res/imp/shared/url-param.html"> |
| 40 | 40 |
| 41 <link rel="import" href="task-filters.html"> | 41 <link rel="import" href="task-filters.html"> |
| 42 <link rel="import" href="task-list-data.html"> | 42 <link rel="import" href="task-list-data.html"> |
| 43 <link rel="import" href="task-list-summary.html"> | 43 <link rel="import" href="task-list-summary.html"> |
| 44 <link rel="import" href="task-mass-cancel.html"> | 44 <link rel="import" href="task-mass-cancel.html"> |
| 45 | 45 |
| 46 <dom-module id="task-list"> | 46 <dom-module id="task-list"> |
| 47 <template> | 47 <template> |
| 48 <style include="iron-flex iron-flex-alignment iron-positioning swarming-app-
style dynamic-table-style task-style"> | 48 <style include="iron-flex iron-flex-alignment iron-positioning swarming-app-
style dynamic-table-style task-style"> |
| 49 task-filters, task-list-summary { | 49 task-filters, task-list-summary { |
| (...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 return task.tagMap[col]; | 555 return task.tagMap[col]; |
| 556 }, | 556 }, |
| 557 | 557 |
| 558 _taskClass: function(task) { | 558 _taskClass: function(task) { |
| 559 return this.stateClass(this._column("state", task)); | 559 return this.stateClass(this._column("state", task)); |
| 560 } | 560 } |
| 561 }); | 561 }); |
| 562 })(); | 562 })(); |
| 563 </script> | 563 </script> |
| 564 </dom-module> | 564 </dom-module> |
| OLD | NEW |