touch and mouse

This commit is contained in:
Mahdi Dibaiee 2014-02-02 13:18:10 +03:30
parent ecc3e12e63
commit 79545b0dfb

View File

@ -16,22 +16,16 @@ $(document).ready(function() {
sizeAndPos();
$(window).resize(sizeAndPos);
$c.on('mousedown touchstart', function(e) {
$c.bind('mousedown touchstart', function(e) {
var xy = relative(e.pageX, e.pageY);
startPoint(xy.x, xy.y);
window.active = true;
}).on('mousemove touchmove', function(e) {
}).bind('mousemove touchmove', function(e) {
if (!window.active || settings.type == 'line') return;
var xy = relative(e.pageX, e.pageY);
drawPoint(xy.x, xy.y);
}).on('mouseup touchend', function() {
}).bind('mouseup touchend', function() {
window.active = false;
})
})