Changeset 1437
- Timestamp:
- 09/13/06 01:28:53 (2 years ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/Layer/Grid.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/Layer/Grid.js
r1424 r1437 268 268 // grid, get a reference to the tile. 269 269 var tile = null; 270 if ((testRow < this.grid.length) && 271 (testCell < this.grid[0].length) ) {270 if ((testRow < this.grid.length) && (testRow >= 0) && 271 (testCell < this.grid[0].length) && (testCell >= 0)) { 272 272 tile = this.grid[testRow][testCell]; 273 273 }
