Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
殷洪(管理员)
/
raphael
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Registry
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
425ba722
authored
May 08, 2010
by
DmitryBaranovskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.4.1
• Small bug fix in multi-touch implementation
parent
9dc9ccb9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
raphael.js
+5
-5
No files found.
raphael.js
View file @
425ba722
/*!
/*!
* Raphael 1.4 - JavaScript Vector Library
* Raphael 1.4
.1
- 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"
;
R
.
version
=
"1.4
.1
"
;
var
separator
=
/
[
,
]
+/
,
var
separator
=
/
[
,
]
+/
,
elements
=
/^
(
circle|rect|path|ellipse|text|image
)
$/
,
elements
=
/^
(
circle|rect|path|ellipse|text|image
)
$/
,
proto
=
"prototype"
,
proto
=
"prototype"
,
...
@@ -2487,7 +2487,7 @@ Raphael = (function () {
...
@@ -2487,7 +2487,7 @@ Raphael = (function () {
return
function
(
obj
,
type
,
fn
,
element
)
{
return
function
(
obj
,
type
,
fn
,
element
)
{
var
f
=
function
(
e
)
{
var
f
=
function
(
e
)
{
if
(
supportsTouch
)
{
if
(
supportsTouch
)
{
for
(
var
i
=
0
,
ii
=
e
.
targetTouches
.
length
;
i
<
ii
;
i
++
)
{
for
(
var
i
=
0
,
ii
=
e
.
targetTouches
&&
e
.
targetTouches
.
length
;
i
<
ii
;
i
++
)
{
if
(
e
.
targetTouches
[
i
].
target
==
obj
)
{
if
(
e
.
targetTouches
[
i
].
target
==
obj
)
{
var
olde
=
e
;
var
olde
=
e
;
e
=
e
.
targetTouches
[
i
];
e
=
e
.
targetTouches
[
i
];
...
@@ -2553,7 +2553,7 @@ Raphael = (function () {
...
@@ -2553,7 +2553,7 @@ Raphael = (function () {
Element
[
proto
].
drag
=
function
(
onmove
,
onstart
,
onend
)
{
Element
[
proto
].
drag
=
function
(
onmove
,
onstart
,
onend
)
{
this
.
_drag
=
{};
this
.
_drag
=
{};
var
el
=
this
.
mousedown
(
function
(
e
)
{
var
el
=
this
.
mousedown
(
function
(
e
)
{
e
.
preventDefault
();
(
e
.
originalEvent
?
e
.
originalEvent
:
e
)
.
preventDefault
();
this
.
_drag
.
x
=
e
.
clientX
;
this
.
_drag
.
x
=
e
.
clientX
;
this
.
_drag
.
y
=
e
.
clientY
;
this
.
_drag
.
y
=
e
.
clientY
;
this
.
_drag
.
id
=
e
.
identifier
;
this
.
_drag
.
id
=
e
.
identifier
;
...
@@ -2571,7 +2571,7 @@ Raphael = (function () {
...
@@ -2571,7 +2571,7 @@ Raphael = (function () {
if
(
touch
.
identifier
==
el
.
_drag
.
id
)
{
if
(
touch
.
identifier
==
el
.
_drag
.
id
)
{
x
=
touch
.
clientX
;
x
=
touch
.
clientX
;
y
=
touch
.
clientY
;
y
=
touch
.
clientY
;
e
.
preventDefault
();
(
e
.
originalEvent
?
e
.
originalEvent
:
e
)
.
preventDefault
();
break
;
break
;
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment