processing / p5.js-editor

Deprecated desktop editor for p5.js
https://p5js.org
MIT License
338 stars 91 forks source link

loadJSON errors not making it to the IDE console #190

Open shiffman opened 8 years ago

shiffman commented 8 years ago

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:

screen shot 2015-11-06 at 12 28 57 pm

antiboredom commented 8 years ago

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