From 3c6855da811e1db9d5081baef9f0c5994ef40ea0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Tue, 23 Aug 2016 14:14:10 +0200 Subject: [PATCH] Attempt to use new Travis API. --- script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.js b/script.js index 8103358..c3795ce 100644 --- a/script.js +++ b/script.js @@ -141,7 +141,7 @@ function getBuildDate(build) { function getJSON(url, callback) { return d3.xhr(url) .header("Accept", "application/vnd.travis-ci.2+json") - .mimeType("application/json") + // .mimeType("application/json") .response(function(xhr) { return JSON.parse(xhr.responseText); }) .get(callback); }