Commit a331eb5d by DmitryBaranovskiy

Fix for touch events and drag method

parent 08cf66bb
/*! /*!
* Raphael 1.4.0 - JavaScript Vector Library * Raphael 1.4.0-pre - JavaScript Vector Library
* *
* Copyright (c) 2010 Dmitry Baranovskiy (http://raphaeljs.com) * Copyright (c) 2010 Dmitry Baranovskiy (http://raphaeljs.com)
* Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license. * Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license.
...@@ -2491,12 +2491,13 @@ Raphael = (function () { ...@@ -2491,12 +2491,13 @@ Raphael = (function () {
if (doc.addEventListener) { if (doc.addEventListener) {
return function (obj, type, fn, element) { return function (obj, type, fn, element) {
var f = function (e) { var f = function (e) {
if (e.touches) { if (e.targetTouches) {
for (var i = 0, ii = e.touches.length; i < ii; i++) { for (var i = 0, ii = e.targetTouches.length; i < ii; i++) {
if (e.touches[i].target == obj) { if (e.targetTouches[i].target == obj) {
var olde = e; var olde = e;
e = e.touches[i]; e = e.targetTouches[i];
e.originalEvent = e; e.originalEvent = olde;
break;
} }
} }
} }
...@@ -2561,12 +2562,13 @@ Raphael = (function () { ...@@ -2561,12 +2562,13 @@ Raphael = (function () {
Raphael.mousemove(move).mouseup(up); Raphael.mousemove(move).mouseup(up);
}), }),
move = function (e) { move = function (e) {
if (e.changedTouches) { if (e.touches) {
for (var i = 0, ii = e.changedTouches.length; i < ii; i++) { for (var i = 0, ii = e.touches.length; i < ii; i++) {
var touch = e.changedTouches[i]; var touch = e.touches[i];
if (touch.identifier == el._drag.id) { if (touch.identifier == el._drag.id) {
f.call(el, touch.clientX - el._drag.x, touch.clientY - el._drag.y); f.call(el, touch.clientX - el._drag.x, touch.clientY - el._drag.y);
e.preventDefault(); e.preventDefault();
break;
} }
} }
} else { } else {
...@@ -2575,18 +2577,11 @@ Raphael = (function () { ...@@ -2575,18 +2577,11 @@ Raphael = (function () {
} }
}, },
up = function (e) { up = function (e) {
if (e.changedTouches) { el._drag = {};
for (var i = 0, ii = e.changedTouches.length; i < ii; i++) { Raphael.unmousemove(move).unmouseup(up);
if (e.changedTouches[i].identifier == el._drag.id) { end && end.call(el);
Raphael.unmousemove(move).unmouseup(up);
end && end.call(el);
}
}
} else {
Raphael.unmousemove(move).unmouseup(up);
end && end.call(el);
}
}; };
return this;
}; };
Paper[proto].circle = function (x, y, r) { Paper[proto].circle = function (x, y, r) {
return theCircle(this, x || 0, y || 0, r || 0); return theCircle(this, x || 0, y || 0, r || 0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment