diff options
author | David DeSandro <desandrocodes@gmail.com> | 2016-06-15 16:13:08 -0400 |
---|---|---|
committer | David DeSandro <desandrocodes@gmail.com> | 2016-06-15 16:13:08 -0400 |
commit | 2f938ecaee1ef3a99b42ba7002d0dbc04bf8e789 (patch) | |
tree | a4a40c06ca685f39e30ae730377332cc923a9901 | |
parent | 155636285c28e639c6a4e96f3d0a49d79a6bc460 (diff) | |
download | tap-listener-master.zip tap-listener-master.tar.gz tap-listener-master.tar.bz2 |
🐞 fix unbindTap. Ref #1HEADorigin/masterorigin/HEADmaster
-rw-r--r-- | tap-listener.js | 2 |
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; }; |