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

Side by Side Diff: appengine/swarming/elements/res/imp/botpage/bot-page.html

Issue 2338823002: Fix small glitches in bot-page and task-list (Closed) Base URL: git@github.com:luci/luci-py@master
Patch Set: 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 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 </tr> 323 </tr>
324 </thead> 324 </thead>
325 <tbody> 325 <tbody>
326 <template is="dom-repeat" items="{{_eventList(_events,_show_all)}} " as="event"> 326 <template is="dom-repeat" items="{{_eventList(_events,_show_all)}} " as="event">
327 <tr> 327 <tr>
328 <td class="message">[[event.message]]</a></td> 328 <td class="message">[[event.message]]</a></td>
329 <td>[[event.event_type]]</td> 329 <td>[[event.event_type]]</td>
330 <td>[[event.human_ts]]</td> 330 <td>[[event.human_ts]]</td>
331 <td><a target="_blank" href$="[[_taskLink(event.task_id)]]">[[ event.task_id]]</a></td> 331 <td><a target="_blank" href$="[[_taskLink(event.task_id)]]">[[ event.task_id]]</a></td>
332 <td> 332 <td>
333 <a target="_blank" href$="[[_luciLink(_bot.version)]]">[[_sh orten(_bot.version,'8')]]</a> 333 <a target="_blank" href$="[[_luciLink(event.version)]]">[[_s horten(event.version,'8')]]</a>
334 </td> 334 </td>
335 </tr> 335 </tr>
336 </template> 336 </template>
337 </tbody> 337 </tbody>
338 </table> 338 </table>
339 </template> 339 </template>
340 </div> 340 </div>
341 </div> 341 </div>
342 </swarming-app> 342 </swarming-app>
343 343
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 }, 525 },
526 526
527 _toggleState: function() { 527 _toggleState: function() {
528 this.set("_show_state", !this._show_state); 528 this.set("_show_state", !this._show_state);
529 } 529 }
530 530
531 }); 531 });
532 })(); 532 })();
533 </script> 533 </script>
534 </dom-module> 534 </dom-module>
OLDNEW
« no previous file with comments | « appengine/swarming/elements/build/js/js.js ('k') | appengine/swarming/elements/res/imp/tasklist/task-list.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698