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

Side by Side Diff: appengine/swarming/elements/res/imp/botpage/bot-page.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 <bot-page> 9 <bot-page>
10 10
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 <td>[[event.human_ts]]</td> 273 <td>[[event.human_ts]]</td>
274 <td><a target="_blank" href$="[[_taskLink(event.task_id)]]">[[ event.task_id]]</a></td> 274 <td><a target="_blank" href$="[[_taskLink(event.task_id)]]">[[ event.task_id]]</a></td>
275 <td> 275 <td>
276 <a target="_blank" href$="[[_luciLink(event.version)]]">[[_s horten(event.version,'8')]]</a> 276 <a target="_blank" href$="[[_luciLink(event.version)]]">[[_s horten(event.version,'8')]]</a>
277 </td> 277 </td>
278 </tr> 278 </tr>
279 </template> 279 </template>
280 </tbody> 280 </tbody>
281 </table> 281 </table>
282 </template> 282 </template>
283 </div>
284 </div> 283 </div>
285 </swarming-app> 284 </swarming-app>
286 285
287 <paper-dialog id="prompt" modal on-iron-overlay-closed="_promptClosed"> 286 <paper-dialog id="prompt" modal on-iron-overlay-closed="_promptClosed">
288 <h2>Are you sure?</h2> 287 <h2>Are you sure?</h2>
289 <div>Are you sure you want to [[_dialogPrompt]]?</div> 288 <div>Are you sure you want to [[_dialogPrompt]]?</div>
290 <div class="buttons"> 289 <div class="buttons">
291 <paper-button dialog-dismiss autofocus>No</paper-button> 290 <paper-button dialog-dismiss autofocus>No</paper-button>
292 <paper-button dialog-confirm>Yes</paper-button> 291 <paper-button dialog-confirm>Yes</paper-button>
293 </div> 292 </div>
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 }, 458 },
460 459
461 _toggleState: function() { 460 _toggleState: function() {
462 this.set("_show_state", !this._show_state); 461 this.set("_show_state", !this._show_state);
463 } 462 }
464 463
465 }); 464 });
466 })(); 465 })();
467 </script> 466 </script>
468 </dom-module> 467 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698