Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(208)

Side by Side Diff: appengine/swarming/elements/res/imp/tasklist/task-list.html

Issue 2359993002: Medium sized improvements to bot-list and task-list (Closed) Base URL: git@github.com:luci/luci-py@master
Patch Set: condense loop Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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>
OLDNEW
« no previous file with comments | « appengine/swarming/elements/res/imp/tasklist/task-filters.html ('k') | appengine/swarming/elements/res/js/alias.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698