summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClark Laughlin <clark.laughlin@linaro.org>2015-07-02 00:45:35 -0400
committerClark Laughlin <clark.laughlin@linaro.org>2015-07-02 00:45:35 -0400
commit718ea70086ea94032195d1442efb4e2f3c88b888 (patch)
treef58fbf32ccbccd969f8bed4d048845a61483f02c
parent2ee12cac245c640e79616d8bb04cb10b8b530a7e (diff)
web app: diff page
-rw-r--r--web-app/static/diff.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/web-app/static/diff.html b/web-app/static/diff.html
index 13c8cb6..ab2e155 100644
--- a/web-app/static/diff.html
+++ b/web-app/static/diff.html
@@ -33,9 +33,9 @@ $(function() {
var other = params["other"];
// get the list of available jobs
- $.getJSON("/results/tempest/jobs" + job, function(data) {
+ $.getJSON("/results/tempest/jobs", function(data) {
$.each(data, function(i, obj) {
- var display_test = obj["t.lava_job"] + ": " + obj["d.name"] + " / " + obj["b.name"] + " / " + obj["o.distro"] + " / " + obj["o.version"]
+ var display_test = obj["t.lava_job"] + ": " + obj["d.name"] + " / " + obj["b.name"] + " / " + obj["o.distro"] + " / " + obj["o.version"];
$("#ref-list").append(
$('<option></option>').val(obj["t.lava_job"]).html(display_text));
$("#other-list").append(
@@ -71,9 +71,9 @@ Openstack CI</h1>
<h2>Job Selection</h2>
-Reference: <select id='ref-list' size='1'>
+Reference: <select id='ref-list' size='1'></select>
<br/>
-Compare With: <select id='other-list' size='1'>
+Compare With: <select id='other-list' size='1'></select>
<h2>Changes</h2>
<table id="changes_table" class="display" cellspacing="0" width="100%"></table>