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

Side by Side Diff: appengine/swarming/elements/res/imp/common/swarming-app.html

Issue 2249143002: Make TaskList use Dynamic List (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@master
Patch Set: Address comments Created 4 years, 4 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 <swarming-app> 9 <swarming-app>
10 10
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 } 85 }
86 </style> 86 </style>
87 <app-header-layout> 87 <app-header-layout>
88 <app-header fixed> 88 <app-header fixed>
89 <app-toolbar> 89 <app-toolbar>
90 <div class="title left">[[name]]</div> 90 <div class="title left">[[name]]</div>
91 <paper-spinner-lite class="left" active="[[busy]]"></paper-spinner-lit e> 91 <paper-spinner-lite class="left" active="[[busy]]"></paper-spinner-lit e>
92 92
93 <a class="left" href="/newui/">Home</a> 93 <a class="left" href="/newui/">Home</a>
94 <a class="left" href="/newui/botlist">Bot List</a> 94 <a class="left" href="/newui/botlist">Bot List</a>
95 <a class="left" href="/newui/tasklist">Task List</a>
95 <div class="flex"></div> 96 <div class="flex"></div>
96 <auth-signin 97 <auth-signin
97 class="right" 98 class="right"
98 client-id="[[client_id]]" 99 client-id="[[client_id]]"
99 auth-headers="{{auth_headers}}" 100 auth-headers="{{auth_headers}}"
100 signed-in="{{signed_in}}"> 101 signed-in="{{signed_in}}">
101 </auth-signin> 102 </auth-signin>
102 </app-toolbar> 103 </app-toolbar>
103 </app-header> 104 </app-header>
104 <div class="main-content"> 105 <div class="main-content">
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 var result = false; 163 var result = false;
163 // can't use .foreach, as arguments isn't really an Array. 164 // can't use .foreach, as arguments isn't really an Array.
164 for (var i = 0; i < arguments.length; i++) { 165 for (var i = 0; i < arguments.length; i++) {
165 result = result || arguments[i]; 166 result = result || arguments[i];
166 } 167 }
167 return result; 168 return result;
168 }, 169 },
169 }; 170 };
170 })(); 171 })();
171 </script> 172 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698