OpenLayers OpenLayers

Changeset 4760

Show
Ignore:
Timestamp:
10/02/07 21:23:35 (1 year ago)
Author:
crschmidt
Message:

The WFS moveTo function was not calling addTileMonitoringHooks on new tiles
it created after the first one. this means that the layer loadstart/loadend
functions were never being called. Fix with a patch by rdewit. (See #1045)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/openlayers/lib/OpenLayers/Layer/WFS.js

    r4318 r4760  
    256256                this.tile = new OpenLayers.Tile.WFS(this, pos, tileBounds,  
    257257                                                     url, tileSize); 
     258                this.addTileMonitoringHooks(this.tile); 
    258259                this.tile.draw(); 
    259260            }