diff --git a/lib/OpenLayers/Control.js b/lib/OpenLayers/Control.js index 467629a389..6ccd490c37 100644 --- a/lib/OpenLayers/Control.js +++ b/lib/OpenLayers/Control.js @@ -26,23 +26,21 @@ OpenLayers.Control.prototype = { /** * 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 OpenLayers.Control.TYPES */ type: null, /** This property is used for CSS related to the drawing of the Control. + * * @type string */ displayClass: "", - /** - * @type boolean - */ + /** @type boolean */ active: null, - /** - * @type OpenLayers.Handler - */ + /** @type OpenLayers.Handler */ handler: null, /** @@ -53,7 +51,8 @@ OpenLayers.Control.prototype = { initialize: function (options) { // We do this before the extend so that instances can override // className in options. - this.displayClass = this.CLASS_NAME.replace("OpenLayers.", "ol").replace(".",""); + this.displayClass = + this.CLASS_NAME.replace("OpenLayers.", "ol").replace(".",""); OpenLayers.Util.extend(this, options);