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
e0dd2aeb
authored
Aug 11, 2013
by
Tomas Alabes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
v2.1.1
parent
22ddc778
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
7 deletions
+19
-7
README.markdown
+0
-2
dev/package.json
+1
-1
raphael-min.js
+0
-0
raphael.js
+18
-4
No files found.
README.markdown
View file @
e0dd2aeb
...
@@ -26,8 +26,6 @@ define([ "path/to/raphael" ], function( Raphael ) {
...
@@ -26,8 +26,6 @@ define([ "path/to/raphael" ], function( Raphael ) {
At the moment we have 4 milestones:
At the moment we have 4 milestones:
### v2.1.1
Milestone for bug fixes contributed by the community.
### v2.2.0
### v2.2.0
Milestone for enhancements from contributors pull requests.
Milestone for enhancements from contributors pull requests.
### v2.2.1
### v2.2.1
...
...
dev/package.json
View file @
e0dd2aeb
{
{
"name"
:
"
raphael
"
,
"name"
:
"
raphael
"
,
"version"
:
"2.1.
0
"
,
"version"
:
"2.1.
1
"
,
"description"
:
"JavaScript Vector Library"
,
"description"
:
"JavaScript Vector Library"
,
"main"
:
"raphael.js"
,
"main"
:
"raphael.js"
,
"scripts"
:
{
"scripts"
:
{
...
...
raphael-min.js
View file @
e0dd2aeb
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.js
View file @
e0dd2aeb
// ┌────────────────────────────────────────────────────────────────────┐ \\
// ┌────────────────────────────────────────────────────────────────────┐ \\
// │ Raphaël 2.1.
0
- JavaScript Vector Library │ \\
// │ Raphaël 2.1.
1
- JavaScript Vector Library │ \\
// ├────────────────────────────────────────────────────────────────────┤ \\
// ├────────────────────────────────────────────────────────────────────┤ \\
// │ Copyright © 2008-2012 Dmitry Baranovskiy (http://raphaeljs.com) │ \\
// │ Copyright © 2008-2012 Dmitry Baranovskiy (http://raphaeljs.com) │ \\
// │ Copyright © 2008-2012 Sencha Labs (http://sencha.com) │ \\
// │ Copyright © 2008-2012 Sencha Labs (http://sencha.com) │ \\
...
@@ -3584,11 +3584,25 @@
...
@@ -3584,11 +3584,25 @@
elproto
.
drag
=
function
(
onmove
,
onstart
,
onend
,
move_scope
,
start_scope
,
end_scope
)
{
elproto
.
drag
=
function
(
onmove
,
onstart
,
onend
,
move_scope
,
start_scope
,
end_scope
)
{
function
start
(
e
)
{
function
start
(
e
)
{
(
e
.
originalEvent
||
e
).
preventDefault
();
(
e
.
originalEvent
||
e
).
preventDefault
();
var
scrollY
=
g
.
doc
.
documentElement
.
scrollTop
||
g
.
doc
.
body
.
scrollTop
,
var
x
=
e
.
clientX
,
y
=
e
.
clientY
,
scrollY
=
g
.
doc
.
documentElement
.
scrollTop
||
g
.
doc
.
body
.
scrollTop
,
scrollX
=
g
.
doc
.
documentElement
.
scrollLeft
||
g
.
doc
.
body
.
scrollLeft
;
scrollX
=
g
.
doc
.
documentElement
.
scrollLeft
||
g
.
doc
.
body
.
scrollLeft
;
this
.
_drag
.
x
=
e
.
clientX
+
scrollX
;
this
.
_drag
.
y
=
e
.
clientY
+
scrollY
;
this
.
_drag
.
id
=
e
.
identifier
;
this
.
_drag
.
id
=
e
.
identifier
;
if
(
supportsTouch
&&
e
.
touches
)
{
var
i
=
e
.
touches
.
length
,
touch
;
while
(
i
--
)
{
touch
=
e
.
touches
[
i
];
this
.
_drag
.
id
=
touch
.
identifier
;
if
(
touch
.
identifier
==
this
.
_drag
.
id
)
{
x
=
touch
.
clientX
;
y
=
touch
.
clientY
;
break
;
}
}
}
this
.
_drag
.
x
=
x
+
scrollX
;
this
.
_drag
.
y
=
y
+
scrollY
;
!
drag
.
length
&&
R
.
mousemove
(
dragMove
).
mouseup
(
dragUp
);
!
drag
.
length
&&
R
.
mousemove
(
dragMove
).
mouseup
(
dragUp
);
drag
.
push
({
el
:
this
,
move_scope
:
move_scope
,
start_scope
:
start_scope
,
end_scope
:
end_scope
});
drag
.
push
({
el
:
this
,
move_scope
:
move_scope
,
start_scope
:
start_scope
,
end_scope
:
end_scope
});
onstart
&&
eve
.
on
(
"raphael.drag.start."
+
this
.
id
,
onstart
);
onstart
&&
eve
.
on
(
"raphael.drag.start."
+
this
.
id
,
onstart
);
...
...
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