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

Side by Side Diff: appengine/trooper_o_matic/ui/build-table.html

Issue 774323002: Moved trooper_o_matic to appengine/ (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 6 years 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 <!-- Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 <!-- Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be 2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. --> 3 found in the LICENSE file. -->
4 4
5 <link rel="import" href="../bower_components/core-ajax/core-ajax.html"> 5 <link rel="import" href="../bower_components/core-ajax/core-ajax.html">
6 6
7 <polymer-element name="build-table" attributes="builds auto"> 7 <polymer-element name="build-table" attributes="builds auto">
8 <template> 8 <template>
9 <style> 9 <style>
10 :host { 10 :host {
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 maxDuration = duration; 184 maxDuration = duration;
185 maxDurationName = name; 185 maxDurationName = name;
186 } 186 }
187 buildDuration += duration; 187 buildDuration += duration;
188 }); 188 });
189 steps.max = {name: maxDurationName, duration: maxDuration, percent: maxD uration / buildDuration}; 189 steps.max = {name: maxDurationName, duration: maxDuration, percent: maxD uration / buildDuration};
190 } 190 }
191 }); 191 });
192 </script> 192 </script>
193 </polymer-element> 193 </polymer-element>
OLDNEW
« no previous file with comments | « appengine/trooper_o_matic/test/unit-tests.html ('k') | appengine/trooper_o_matic/ui/test/build-table-tests.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698