diff --git a/index.html b/index.html index 621e678..0dc58b6 100644 --- a/index.html +++ b/index.html @@ -31,6 +31,16 @@
+ + + + + + + + + +

Builds per day

diff --git a/script.js b/script.js index 8b37fd7..c716ae5 100644 --- a/script.js +++ b/script.js @@ -188,8 +188,6 @@ function updateChart() { } function filterBuilds(json) { - globall = json; - console.log(json); if (typeof json.builds.length === 'undefined') { alert('invalid repository: ' + repoName); return; @@ -227,6 +225,8 @@ function updateChart() { renderBuildTimes('#build-times-duration', getDuration, builds, baseUrl); renderBuildTimes('#build-times', getClockTime, builds, baseUrl); + // renderBuildTimes('#build-shortest-job', getShortest, builds, baseUrl); + // renderBuildTimes('#build-longest-job', getLongest, builds, baseUrl); renderBuildCounts('#build-counts', d3.entries(buildCounts), baseUrl); if (++i < n && curOldestBuild < oldestBuild) {