Stop linking to jenkins in zuul status page

See I99bf3cfbcd92f65376638e00683574252e8bda02.

Change-Id: I24d147003d85089ab740ebdc790ac545b9d5651d
This commit is contained in:
James E. Blair 2016-04-15 16:18:31 -07:00
parent 380ed13d54
commit 0a28946607

View File

@ -332,13 +332,7 @@ function format_change(change, change_queue) {
result_class += " result_unstable";
}
html += '<span class="jobwrapper"><span class="job">';
if (job['url'] !== null) {
html += '<a href="'+job['url']+'">';
}
html += job['name'];
if (job['url'] !== null) {
html += '</a>';
}
html += ': ';
if (job['result'] === null && job['url'] !== null) {
html += format_progress(job['elapsed_time'], job['remaining_time']);