From 845efddecd3d6ccab14eff9b10c6fbddad8f7fd1 Mon Sep 17 00:00:00 2001 From: fkloft Date: Tue, 24 Sep 2013 13:54:19 +0200 Subject: [PATCH] Fixed typo in last commit --- external/taphold.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/taphold.js b/external/taphold.js index 1a76e183..e889b126 100644 --- a/external/taphold.js +++ b/external/taphold.js @@ -115,7 +115,7 @@ .unbind((touchSupported ? "touchend" : "mouseup"), stopHandler) .unbind((touchSupported ? "touchmove" : "mouseleave"), leaveHandler); if(touchSupported) - $(this).bind("touchcancel", leaveHandler); + $(this).unbind("touchcancel", leaveHandler); } }; })(jQuery);