1 d3.json = function(url, callback) {
2 d3.text(url, "application/json", function(text) {
3 callback(text ? JSON.parse(text) : null);
4 });
5 };