Running a few canvases which work fine in chrome but fail in the latest version of Mozilla. I know this was an issue a while back and I thought the new processing-1.4.1.js was fixed to accommodate for the for loop failure seen here. Does anyone know if they did or if not, why this is happening and how to fix it?
edit:
Test code that will not work:
void setup() {
String names[] = {"Alexis", "Thomas", "Antoine"};
for(String name : names) {
alert(name); // doesn't on Firefox 17+, bug?
}
}
void draw() {
}