Commit 83be6895 authored by Leo Iannacone's avatar Leo Iannacone

Merge remote-tracking branch 'github/master' into portable

parents 3554fea0 056a2751
......@@ -39,12 +39,12 @@ function Page_History() {
});
var row = '<tr class="package" id="' + _get_id(package_status) + '">';
var package_url = Utils.get_url_to_package(p);
row += '<td><a href="' + distribution_url + '">' + p.distribution + '</a></td>';
row += '<td><a href="' + package_url + '">' + p.package + '</td>';
row += '<td>' + Utils.format_time(p.start, false, true) + '</td>';
row += '<td>' + Utils.format_time(p.end, false, true) + '</td>';
row += '<td>' + p.uploader + '</td>';
row += '<td class="' + info.className + ' text-' + info.className + '">' + label + '</td>';
row += '<td class="distribution"><a href="' + distribution_url + '">' + p.distribution + '</a></td>';
row += '<td class="package"><a href="' + package_url + '">' + p.package + '</td>';
row += '<td class="start">' + Utils.format_time(p.start, false, true) + '</td>';
row += '<td class="end">' + Utils.format_time(p.end, false, true) + '</td>';
row += '<td class="uploader">' + p.uploader + '</td>';
row += '<td class="status ' + info.className + ' text-' + info.className + '">' + label + '</td>';
row += '</tr>';
$('table tbody').append(row);
}
......
......@@ -285,6 +285,10 @@ footer .info {
background: #F9F9F9;
}
#history .package {
white-space: nowrap;
}
/* add more colors to graphs */
.ct-series-e .ct-bar,
.ct-chart .ct-series.ct-series-e .ct-line,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment