p5.js-editor icon indicating copy to clipboard operation
p5.js-editor copied to clipboard

loadJSON errors not making it to the IDE console

Open shiffman opened this issue 10 years ago • 1 comments

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

shiffman avatar Nov 06 '15 17:11 shiffman

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

antiboredom avatar Nov 06 '15 17:11 antiboredom