Add missing semi-colons. (closes #1762)
git-svn-id: http://svn.openlayers.org/trunk/openlayers@8130 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -415,12 +415,12 @@ OpenLayers.Layer.Grid = OpenLayers.Class(OpenLayers.Layer.HTTPRequest, {
|
|||||||
tileoffsetlon += tilelon;
|
tileoffsetlon += tilelon;
|
||||||
tileoffsetx += this.tileSize.w;
|
tileoffsetx += this.tileSize.w;
|
||||||
} while ((tileoffsetlon <= bounds.right + tilelon * this.buffer)
|
} while ((tileoffsetlon <= bounds.right + tilelon * this.buffer)
|
||||||
|| colidx < minCols)
|
|| colidx < minCols);
|
||||||
|
|
||||||
tileoffsetlat -= tilelat;
|
tileoffsetlat -= tilelat;
|
||||||
tileoffsety += this.tileSize.h;
|
tileoffsety += this.tileSize.h;
|
||||||
} while((tileoffsetlat >= bounds.bottom - tilelat * this.buffer)
|
} while((tileoffsetlat >= bounds.bottom - tilelat * this.buffer)
|
||||||
|| rowidx < minRows)
|
|| rowidx < minRows);
|
||||||
|
|
||||||
//shave off exceess rows and colums
|
//shave off exceess rows and colums
|
||||||
this.removeExcessTiles(rowidx, colidx);
|
this.removeExcessTiles(rowidx, colidx);
|
||||||
|
|||||||
Reference in New Issue
Block a user