replace tabs with spaces

git-svn-id: http://svn.openlayers.org/trunk/openlayers@3672 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2007-07-10 18:30:50 +00:00
parent a32a2eefec
commit 0638628a50

View File

@@ -16,50 +16,50 @@ OpenLayers.Control.TYPE_TOOL = 3;
OpenLayers.Control.prototype = {
/**
* Property: id
* {String}
*/
id: null,
* Property: id
* {String}
*/
id: null,
/**
* Property: map
* Property: map
* {<OpenLayers.Map>} this gets set in the addControl() function in
* OpenLayers.Map
*/
map: null,
*/
map: null,
/**
* Property: div
* {DOMElement}
*/
div: null,
* Property: div
* {DOMElement}
*/
div: null,
/**
* Property: type
* Property: type
* {OpenLayers.Control.TYPES} Controls can have a 'type'. The type
* determines the type of interactions which are possible with them when
* they are placed into a toolbar.
*/
type: null,
*/
type: null,
/**
* Property: displayClass
* Property: displayClass
* {string} This property is used for CSS related to the drawing of the
* Control.
*/
displayClass: "",
*/
displayClass: "",
/**
* Property: active
* {boolean} null
*/
active: null,
* Property: active
* {boolean} null
*/
active: null,
/**
* Property: handler
* {<OpenLayers.Handler}> null
*/
handler: null,
* Property: handler
* {<OpenLayers.Handler}> null
*/
handler: null,
/**
* Constructor: OpenLayers.Control