Remove assertion again

When doing a double tap, the timeout id might get overridden.
This commit is contained in:
tsauerwein
2014-03-13 16:46:47 +01:00
parent 599de6a44a
commit 41df4e0a23

View File

@@ -161,7 +161,6 @@ ol.pointer.TouchSource.prototype.removePrimaryPointer_ = function(inPointer) {
* @private
*/
ol.pointer.TouchSource.prototype.resetClickCount_ = function() {
goog.asserts.assert(!goog.isDef(this.resetId_));
this.resetId_ = goog.global.setTimeout(this.resetClickCountHandler_,
ol.pointer.TouchSource.CLICK_COUNT_TIMEOUT);
};