Fixed typo in last commit

This commit is contained in:
fkloft 2013-09-24 13:54:19 +02:00
parent 1cecbe7f44
commit 845efddecd

2
external/taphold.js vendored
View File

@ -115,7 +115,7 @@
.unbind((touchSupported ? "touchend" : "mouseup"), stopHandler) .unbind((touchSupported ? "touchend" : "mouseup"), stopHandler)
.unbind((touchSupported ? "touchmove" : "mouseleave"), leaveHandler); .unbind((touchSupported ? "touchmove" : "mouseleave"), leaveHandler);
if(touchSupported) if(touchSupported)
$(this).bind("touchcancel", leaveHandler); $(this).unbind("touchcancel", leaveHandler);
} }
}; };
})(jQuery); })(jQuery);