p5.js-editor
p5.js-editor copied to clipboard
loadJSON errors not making it to the IDE console
Here's an example:
var weather;
function preload() {
var url = 'http://api.openweathermap.org/data/2.5/weather?q=London,UK&APPID=XXXXXXX';
weather = loadJSON(url);
}
function setup() {
}
No error in the IDE, but I do see in the node webkit browser:

Strange! Must be an issue with how I'm intercepting the error messages. Will investigate.