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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/swarming/templates/stats.html
diff --git a/appengine/swarming/templates/stats.html b/appengine/swarming/templates/stats.html
deleted file mode 100644
index edbee316fc59ab48e1ea5d1fe7aa522907acb68b..0000000000000000000000000000000000000000
--- a/appengine/swarming/templates/stats.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>Swarming Status</title>
- <script src="/third_party/webcomponentsjs/webcomponents.min.js"></script>
- <script>
- (function() {
- var DIMENSIONS = {{dimensions|safe}};
- for (var i = 0; i < DIMENSIONS.length; ++i) {
- DIMENSIONS[i] = JSON.parse(DIMENSIONS[i]);
- }
- window.onload = function() {
- var app = document.createElement('stats-app');
- app.dimensions = DIMENSIONS;
- document.getElementById('container').appendChild(app);
- };
- } ());
- </script>
- </head>
- <body>
- <div id="container"></div>
- </body>
-</html>
« 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