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

Side by Side Diff: appengine/swarming/templates/stats.html

Issue 2983183002: swarming: trim stale old UI. (Closed)
Patch Set: Created 3 years, 5 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
« no previous file with comments | « appengine/swarming/templates/root.html ('k') | appengine/swarming/templates/stats_common.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Swarming Status</title>
5 <script src="/third_party/webcomponentsjs/webcomponents.min.js"></script>
6 <script>
7 (function() {
8 var DIMENSIONS = {{dimensions|safe}};
9 for (var i = 0; i < DIMENSIONS.length; ++i) {
10 DIMENSIONS[i] = JSON.parse(DIMENSIONS[i]);
11 }
12 window.onload = function() {
13 var app = document.createElement('stats-app');
14 app.dimensions = DIMENSIONS;
15 document.getElementById('container').appendChild(app);
16 };
17 } ());
18 </script>
19 </head>
20 <body>
21 <div id="container"></div>
22 </body>
23 </html>
OLDNEW
« no previous file with comments | « appengine/swarming/templates/root.html ('k') | appengine/swarming/templates/stats_common.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698