Commit 13173829 by DmitryBaranovskiy

1.4.3

Fixed important bug with touch events
parent dcd2739f
This source diff could not be displayed because it is too large. You can view the blob instead.
/*! /*!
* Raphael 1.4.2 - JavaScript Vector Library * Raphael 1.4.3 - 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.
...@@ -19,7 +19,7 @@ Raphael = (function () { ...@@ -19,7 +19,7 @@ Raphael = (function () {
} }
return create[apply](R, arguments); return create[apply](R, arguments);
} }
R.version = "1.4.2"; R.version = "1.4.3";
var separator = /[, ]+/, var separator = /[, ]+/,
elements = /^(circle|rect|path|ellipse|text|image)$/, elements = /^(circle|rect|path|ellipse|text|image)$/,
proto = "prototype", proto = "prototype",
...@@ -2491,6 +2491,7 @@ Raphael = (function () { ...@@ -2491,6 +2491,7 @@ Raphael = (function () {
addEvent = (function () { addEvent = (function () {
if (doc.addEventListener) { if (doc.addEventListener) {
return function (obj, type, fn, element) { return function (obj, type, fn, element) {
var realName = supportsTouch && touchMap[type] ? touchMap[type] : type;
var f = function (e) { var f = function (e) {
if (supportsTouch && touchMap[has](type)) { if (supportsTouch && touchMap[has](type)) {
for (var i = 0, ii = e.targetTouches && e.targetTouches.length; i < ii; i++) { for (var i = 0, ii = e.targetTouches && e.targetTouches.length; i < ii; i++) {
...@@ -2506,9 +2507,9 @@ Raphael = (function () { ...@@ -2506,9 +2507,9 @@ Raphael = (function () {
} }
return fn.call(element, e); return fn.call(element, e);
}; };
obj.addEventListener(type, f, false); obj.addEventListener(realName, f, false);
return function () { return function () {
obj.removeEventListener(type, f, false); obj.removeEventListener(realName, f, false);
return true; return true;
}; };
}; };
...@@ -2533,9 +2534,8 @@ Raphael = (function () { ...@@ -2533,9 +2534,8 @@ Raphael = (function () {
(function (eventName) { (function (eventName) {
R[eventName] = Element[proto][eventName] = function (fn) { R[eventName] = Element[proto][eventName] = function (fn) {
if (R.is(fn, "function")) { if (R.is(fn, "function")) {
var realName = supportsTouch && touchMap[eventName] ? touchMap[eventName] : eventName;
this.events = this.events || []; this.events = this.events || [];
this.events.push({name: eventName, f: fn, unbind: addEvent(this.shape || this.node || doc, realName, fn, this)}); this.events.push({name: eventName, f: fn, unbind: addEvent(this.shape || this.node || doc, eventName, fn, this)});
} }
return this; return this;
}; };
......
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