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

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

Issue 2350853004: Make the buttons on task-page work (Closed) Base URL: git@github.com:luci/luci-py@task-page2
Patch Set: Fix promses 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 <swarming-app> 9 <swarming-app>
10 10
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 <div class="small right"> 108 <div class="small right">
109 Server: 109 Server:
110 <a href$="[[_versionLink(server_version)]]"> 110 <a href$="[[_versionLink(server_version)]]">
111 [[server_version.server_version]] 111 [[server_version.server_version]]
112 </a> 112 </a>
113 </div> 113 </div>
114 <auth-signin 114 <auth-signin
115 class="right" 115 class="right"
116 client_id="[[client_id]]" 116 client_id="[[client_id]]"
117 auth_headers="{{auth_headers}}" 117 auth_headers="{{auth_headers}}"
118 profile="{{profile}}"
118 signed_in="{{signed_in}}"> 119 signed_in="{{signed_in}}">
119 </auth-signin> 120 </auth-signin>
120 </app-toolbar> 121 </app-toolbar>
121 </app-header> 122 </app-header>
122 <div class="main-content"> 123 <div class="main-content">
123 <content></content> 124 <content></content>
124 </div> 125 </div>
125 <a target="_blank" href="https://bugs.chromium.org/p/chromium/issues/ent ry?components=Infra%3EPlatform%3ESwarming&owner=kjlubick@chromium.org&status=Ass igned"> 126 <a target="_blank" href="https://bugs.chromium.org/p/chromium/issues/ent ry?components=Infra%3EPlatform%3ESwarming&owner=kjlubick@chromium.org&status=Ass igned">
126 <paper-fab mini icon="icons:bug-report"></paper-fab> 127 <paper-fab mini icon="icons:bug-report"></paper-fab>
127 </a> 128 </a>
(...skipping 27 matching lines...) Expand all
155 }, 156 },
156 157
157 permissions: { 158 permissions: {
158 type: Object, 159 type: Object,
159 value: function() { 160 value: function() {
160 // If we aren't logged in, default to no permissions. 161 // If we aren't logged in, default to no permissions.
161 return {}; 162 return {};
162 }, 163 },
163 notify: true, 164 notify: true,
164 }, 165 },
166 profile: {
167 type: Object,
168 notify: true,
169 },
165 170
166 server_version: { 171 server_version: {
167 type: Object, 172 type: Object,
168 notify: true, 173 notify: true,
169 }, 174 },
170 175
171 signed_in: { 176 signed_in: {
172 type: Boolean, 177 type: Boolean,
173 value: false, 178 value: false,
174 notify: true, 179 notify: true,
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 border: none; 293 border: none;
289 line-height: 20px; 294 line-height: 20px;
290 vertical-align: middle; 295 vertical-align: middle;
291 } 296 }
292 297
293 select { 298 select {
294 overflow-y: auto; 299 overflow-y: auto;
295 } 300 }
296 </style> 301 </style>
297 </dom-module> 302 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698