The following statement in any HTML document breaks
loading of dynAPI libraries.
>>> Array.prototype.ln=function(){return
this.length}; <<<
Any mods on the Array prototype will do.
The reason has been traced to [DynObject._queue]
which loops through [this.packages[o]._objects]
instead of looping though the entries within (ln.362
dynapi.js).
Can this be changed to
>>> for (var j=0;j<this.packages
[o]._objects.length;j++) {names[names.length] =
this.packages[o]._objects[j]} <<<
or is there a reason for it?
Regards
A. Joannou