@wise-community/drawing-tool
Version:
HTML5 Drawing Tool
14 lines (12 loc) • 355 B
JavaScript
var $ = require('jquery');
$.fn.longPress = function(listener, timeout) {
return this.on('mousedown touchstart', function (e) {
var timer;
timer = setTimeout(function () {
listener.call(this, e);
}, timeout || 150);
$(window).one('mouseup touchend touchcancel touchleave', function() {
clearTimeout(timer);
});
});
};