Unnecessary and missing semicolon.

This commit is contained in:
Frederic Junod
2012-03-16 12:04:11 +01:00
parent 2b41c8926b
commit 2de2fe2563
13 changed files with 14 additions and 14 deletions

View File

@@ -227,10 +227,10 @@ OpenLayers.Layer.Zoomify = OpenLayers.Class(OpenLayers.Layer.Grid, {
var h = this.standardTileSize;
if (x == this.tierSizeInTiles[z].w -1 ) {
var w = this.tierImageSize[z].w % this.standardTileSize;
};
}
if (y == this.tierSizeInTiles[z].h -1 ) {
var h = this.tierImageSize[z].h % this.standardTileSize;
};
}
return (new OpenLayers.Size(w, h));
} else {
return this.tileSize;