my javascript Application works on firefox and chrome very well. But it seams to be broken on Internet Explorer (IE 8).
I did not get an error Message on the console-log. By debugging the code I notice, that the application breaks on the following line:
series.reduce(visit, []);
The whole function exits at this point.
I know, that reduce
works for arrays, but console.info(typeof(series))
tells: object
But this object exactly looks like an array - and it works on FF/Chrome. Could this be the reason, why IE stops processing the function at this point? And: how to handle this at IE?
Thank you.