Add missing semicolon. Non functional change.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@11185 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Frédéric Junod
2011-02-21 14:55:01 +00:00
parent 2fd0eff3c1
commit 7a1cb00fe4
11 changed files with 19 additions and 18 deletions
+4 -4
View File
@@ -105,7 +105,7 @@ OpenLayers.Layer.Zoomify = OpenLayers.Class(OpenLayers.Layer.Grid, {
*/
initializeZoomify: function( size ) {
var imageSize = size.clone()
var imageSize = size.clone();
var tiles = new OpenLayers.Size(
Math.ceil( imageSize.w / this.standardTileSize ),
Math.ceil( imageSize.h / this.standardTileSize )
@@ -151,9 +151,9 @@ OpenLayers.Layer.Zoomify = OpenLayers.Class(OpenLayers.Layer.Grid, {
OpenLayers.Layer.Grid.prototype.destroy.apply(this, arguments);
// Remove from memory the Zoomify pyramid - is that enough?
this.tileCountUpToTier.length = 0
this.tierSizeInTiles.length = 0
this.tierImageSize.length = 0
this.tileCountUpToTier.length = 0;
this.tierSizeInTiles.length = 0;
this.tierImageSize.length = 0;
},