add missing semicolons.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@4505 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Paul Spencer
2007-09-28 17:17:45 +00:00
parent c28f13f88d
commit 8c003733cf
+3 -3
View File
@@ -458,7 +458,7 @@ OpenLayers.Layer.Grid = OpenLayers.Class(OpenLayers.Layer.HTTPRequest, {
// now we go through and draw the tiles in forward order // now we go through and draw the tiles in forward order
for(var i=0; i < tileQueue.length; i++) { for(var i=0; i < tileQueue.length; i++) {
var tile = tileQueue[i] var tile = tileQueue[i];
tile.draw(); tile.draw();
//mark tile as unqueued for the next time (since tiles are reused) //mark tile as unqueued for the next time (since tiles are reused)
tile.queued = false; tile.queued = false;
@@ -621,7 +621,7 @@ OpenLayers.Layer.Grid = OpenLayers.Class(OpenLayers.Layer.HTTPRequest, {
bounds.right = bounds.right + deltaLon; bounds.right = bounds.right + deltaLon;
position.x = position.x + deltaX; position.x = position.x + deltaX;
var tile = prepend ? this.grid[i].pop() : this.grid[i].shift() var tile = prepend ? this.grid[i].pop() : this.grid[i].shift();
tile.moveTo(bounds, position); tile.moveTo(bounds, position);
if (prepend) { if (prepend) {
this.grid[i].unshift(tile); this.grid[i].unshift(tile);
@@ -647,7 +647,7 @@ OpenLayers.Layer.Grid = OpenLayers.Class(OpenLayers.Layer.HTTPRequest, {
var row = this.grid.pop(); var row = this.grid.pop();
for (var i=0, l=row.length; i<l; i++) { for (var i=0, l=row.length; i<l; i++) {
var tile = row[i]; var tile = row[i];
this.removeTileMonitoringHooks(tile) this.removeTileMonitoringHooks(tile);
tile.destroy(); tile.destroy();
} }
} }