Items 1-12 out of 289 displayed
The issue was related to MIME types mismatch. The files MIME type is not recognized as same across platforms. .csv file in OSX is recognized as text/csv, whereas in Windows it is recognized as...
you can handle http.get errors by check state error
example:-
http.get(url, function (response) {
response.on('error', function (err) {
//do...
This is the way I did it finally:
myAwesomeDropzone.on('addedfile', function(file) {
var ext = file.name.split('.').pop();
if (ext == pdf) {...
Your script tag importing jquery is missing an http: before the URL. That would break your Jquery-ui.
Change it to:
<script...
Changing the code to parse the duration values to Int fixes the problem together with processing them with d3.forEach function. See below:
d3.csv(test.csv, function(error, data)...