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;
/**
* @type {number}
* @type {number|undefined}
* @private
*/
this.downTimeout_;
/**
* @type {number}
* @type {number|undefined}
* @private
*/
this.lastDragTime_;