Merge "Stop linking to jenkins in zuul status page"

This commit is contained in:
Jenkins 2016-04-16 16:04:06 +00:00 committed by Gerrit Code Review
commit bffdbd30b5

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']);