Add missing 'private' jsdoc tag

This commit is contained in:
Frederic Junod
2016-02-24 13:52:28 +01:00
parent bd5c85acc3
commit 373393dce7
+7 -1
View File
@@ -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;