Changeset 1323
- Timestamp:
- 08/21/06 19:04:40 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/openlayers/2.0/lib/OpenLayers/BaseTypes.js
r1228 r1323 421 421 */ 422 422 add:function(x, y){ 423 return new OpenLayers.Bo x(this.left + x, this.bottom + y,424 this.right + x, this.top + y);423 return new OpenLayers.Bounds(this.left + x, this.bottom + y, 424 this.right + x, this.top + y); 425 425 }, 426 426
