From: SourceForge.net <no...@so...> - 2006-08-09 20:50:11
|
Bugs item #1537671, was opened at 2006-08-09 23:50 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105757&aid=1537671&group_id=5757 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: DynAPI 3 API Group: Verified Status: Open Resolution: None Priority: 5 Submitted By: conanDrum (conandrum) Assigned to: Nobody/Anonymous (nobody) Summary: DynObject._queue (BUG/Omission?) Initial Comment: 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 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105757&aid=1537671&group_id=5757 |