Add missing undefined type to timout variables

This commit is contained in:
Frederic Junod
2018-03-19 17:27:25 +01:00
parent 7dc4d3a006
commit cb6ecdb94b

View File

@@ -182,13 +182,13 @@ const Draw = function(options) {
this.downPx_ = null; this.downPx_ = null;
/** /**
* @type {number} * @type {number|undefined}
* @private * @private
*/ */
this.downTimeout_; this.downTimeout_;
/** /**
* @type {number} * @type {number|undefined}
* @private * @private
*/ */
this.lastDragTime_; this.lastDragTime_;