Add missing 'private' jsdoc tag
This commit is contained in:
@@ -55,25 +55,31 @@ ol.control.ZoomSlider = function(opt_options) {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @type {boolean}
|
* @type {boolean}
|
||||||
|
* @private
|
||||||
*/
|
*/
|
||||||
this.dragging_;
|
this.dragging_;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @type {Array.<ol.events.Key>}
|
* @type {Array.<ol.events.Key>}
|
||||||
|
* @private
|
||||||
*/
|
*/
|
||||||
this.dragListenerKeys_;
|
this.dragListenerKeys_;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @type {goog.math.Rect}
|
* @type {goog.math.Rect}
|
||||||
|
* @private
|
||||||
*/
|
*/
|
||||||
this.limits_;
|
this.limits_;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @type {number|undefined}
|
* @type {number|undefined}
|
||||||
|
* @private
|
||||||
*/
|
*/
|
||||||
this.previousX_;
|
this.previousX_;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @type {number|undefined}
|
* @type {number|undefined}
|
||||||
|
* @private
|
||||||
*/
|
*/
|
||||||
this.previousY_;
|
this.previousY_;
|
||||||
|
|
||||||
@@ -93,8 +99,8 @@ ol.control.ZoomSlider = function(opt_options) {
|
|||||||
this.sliderInitialized_ = false;
|
this.sliderInitialized_ = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @private
|
|
||||||
* @type {number}
|
* @type {number}
|
||||||
|
* @private
|
||||||
*/
|
*/
|
||||||
this.duration_ = options.duration !== undefined ? options.duration : 200;
|
this.duration_ = options.duration !== undefined ? options.duration : 200;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user