>
> > > > When a URL is loaded it disappears from the queue.
> > >
> > > Yes, I do see that, but the Array for the queue keeps growing.
> >
> > Not sure why that's happening.  Without looking at the code, my guess is
> > that we need to manually decrement the array length to keep it empty.  I
> > think "loadQueue.length --" might do it?
> >
>
> I think in LoadQueue.prototype.loadNext, you can change:
>
> this.index++;
>
> -to-
>
> DynAPI.removeFromArray(this.queue,this.index++);
>
>
oops.  It should probaly say:

DynAPI.removeFromArray(this.queue,this.index);



_______________________________________________
Dynapi-Dev mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/mailman/listinfo/dynapi-dev

Reply via email to