summaryrefslogtreecommitdiffstats
path: root/tap-listener.js
diff options
context:
space:
mode:
authorDavid DeSandro <desandrocodes@gmail.com>2016-06-15 16:13:08 -0400
committerDavid DeSandro <desandrocodes@gmail.com>2016-06-15 16:13:08 -0400
commit2f938ecaee1ef3a99b42ba7002d0dbc04bf8e789 (patch)
treea4a40c06ca685f39e30ae730377332cc923a9901 /tap-listener.js
parent155636285c28e639c6a4e96f3d0a49d79a6bc460 (diff)
downloadtap-listener-master.zip
tap-listener-master.tar.gz
tap-listener-master.tar.bz2
🐞 fix unbindTap. Ref #1HEADorigin/masterorigin/HEADmaster
Diffstat (limited to 'tap-listener.js')
-rw-r--r--tap-listener.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tap-listener.js b/tap-listener.js
index a9d494f..a60e723 100644
--- a/tap-listener.js
+++ b/tap-listener.js
@@ -61,7 +61,7 @@ proto.unbindTap = function() {
if ( !this.tapElement ) {
return;
}
- this._bindStartEvent( this.tapElement, true );
+ this._bindStartEvent( this.tapElement, false );
delete this.tapElement;
};