Changeset 3070
- Timestamp:
- 04/12/07 11:12:44 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/Control/DrawFeature.js
r2978 r3070 23 23 * @type {Object} The functions that are sent to the handler for callback 24 24 */ 25 callbacks: {},25 callbacks: null, 26 26 27 27 /** trunk/openlayers/lib/OpenLayers/Control/OverviewMap.js
r2964 r3070 47 47 * @type Array(OpenLayers.Layer) 48 48 */ 49 layers: [],49 layers: null, 50 50 51 51 /** … … 69 69 * @type: Object 70 70 */ 71 mapOptions: {},71 mapOptions: null, 72 72 73 73 /** … … 76 76 */ 77 77 initialize: function(options) { 78 this.layers = new Array(); 78 79 OpenLayers.Control.prototype.initialize.apply(this, [options]); 79 80 }, trunk/openlayers/lib/OpenLayers/Control/SelectFeature.js
r3043 r3070 46 46 * @type {Object} The functions that are sent to the handler for callback 47 47 */ 48 callbacks: {},48 callbacks: null, 49 49 50 50 /**
