From: Robert R. <rra...@ya...> - 2001-01-01 05:46:15
|
> > > > > 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); |