OpenLayers OpenLayers

Changeset 3281

Show
Ignore:
Timestamp:
06/07/07 13:16:02 (1 year ago)
Author:
crschmidt
Message:

Adust->adjust typos, and return from the adjustBounds function.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sandbox/crschmidt/wraptheworld/lib/OpenLayers/Layer/MapServer.js

    r3273 r3281  
    109109     * bounds by a gutter. 
    110110     */ 
    111     adustBounds: function(bounds) { 
     111    adjustBounds: function(bounds) { 
    112112        if(this.gutter) { 
    113113            bounds = this.adjustBoundsByGutter(bounds); 
    114114        } 
    115         OpenLayers.Layer.Grid.prototype.adjustBounds.apply(this, [bounds]); 
     115        return OpenLayers.Layer.Grid.prototype.adjustBounds.apply(this, [bounds]); 
    116116    },     
    117117     
  • sandbox/crschmidt/wraptheworld/lib/OpenLayers/Layer/WMS.js

    r3277 r3281  
    109109            bounds = this.adjustBoundsByGutter(bounds); 
    110110        } 
    111         OpenLayers.Layer.Grid.prototype.adjustBounds.apply(this, [bounds]); 
     111        return OpenLayers.Layer.Grid.prototype.adjustBounds.apply(this, [bounds]); 
    112112    },     
    113113