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

Unified Diff: dashboard/dashboard/elements/speed-releasing-page.html

Issue 2619883003: More structure for speed releasing. (Closed)
Patch Set: response to comments Created 3 years, 11 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
Index: dashboard/dashboard/elements/speed-releasing-page.html
diff --git a/dashboard/dashboard/elements/speed-releasing-page.html b/dashboard/dashboard/elements/speed-releasing-page.html
index ed6200e25085b003bb349da35d44cd3daf2f313f..2078aca3fa8b6033b671e56ca52580af21750722 100644
--- a/dashboard/dashboard/elements/speed-releasing-page.html
+++ b/dashboard/dashboard/elements/speed-releasing-page.html
@@ -50,7 +50,7 @@ found in the LICENSE file.
</template>
<template is="dom-if" if="{{!error}}">
<div id="content">
- <p>Coming soon.</p>
+ <p>{{tableBots}}<br>{{tableTests}}<br>{{tableLayout}}</p>
</div>
</template>
</template>
@@ -75,14 +75,27 @@ found in the LICENSE file.
type: String,
value: ''
},
+ tableBots: {
+ type: String,
+ },
+ tableTests: {
+ type: String,
+ },
+ tableLayout: {
+ type: String,
+ },
},
ready: function() {
var params = {};
- simple_xhr.send('/speed_releasing', params,
+ var path = window.location.pathname.split('/')[2];
+ simple_xhr.send('/speed_releasing/' + path, params,
function(response) {
this.xsrfToken = response['xsrf_token'];
this.loading = false;
+ this.tableBots = response['table_bots'];
+ this.tableTests = response['table_tests'];
+ this.tableLayout = response['table_layout'];
}.bind(this),
function(msg) {
this.error = msg;

Powered by Google App Engine
This is Rietveld 408576698