From 41df4e0a23635560abff4baac1817261fba61e41 Mon Sep 17 00:00:00 2001 From: tsauerwein Date: Thu, 13 Mar 2014 16:46:47 +0100 Subject: [PATCH] Remove assertion again When doing a double tap, the timeout id might get overridden. --- src/ol/pointer/touchsource.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ol/pointer/touchsource.js b/src/ol/pointer/touchsource.js index edd5279d67..fc87a13136 100644 --- a/src/ol/pointer/touchsource.js +++ b/src/ol/pointer/touchsource.js @@ -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); };