I am currently working on a tree that is designed using d3.js. Right now, the .html runs prefectly in Edge and firefox, but will not load the graphic in chrome. Additionally, when I change dataLoadUrl from a local file to a github stored file it runs fine on chrome.
Here is the snippet of code I suspect to be the issue
dataLoadUrl: "data.json",
d3.json(params.dataLoadUrl, function(data) {
params.data = data;
params.pristinaData = JSON.parse(JSON.stringify(data));
drawOrganizationChart(params);})
Any help would be greatly appreciate.