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
33587eb2
authored
Aug 17, 2011
by
Dmitry Baranovskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Small code cleanup and docs update
parent
e1fb048f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
4 deletions
+2
-4
raphael-min.js
+0
-0
raphael.core.js
+1
-2
raphael.js
+1
-2
reference.html
+0
-0
No files found.
raphael-min.js
View file @
33587eb2
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.core.js
View file @
33587eb2
...
@@ -3515,8 +3515,7 @@
...
@@ -3515,8 +3515,7 @@
elproto
.
animateWith
=
function
(
element
,
anim
,
params
,
ms
,
easing
,
callback
)
{
elproto
.
animateWith
=
function
(
element
,
anim
,
params
,
ms
,
easing
,
callback
)
{
var
a
=
params
?
R
.
animation
(
params
,
ms
,
easing
,
callback
)
:
anim
;
var
a
=
params
?
R
.
animation
(
params
,
ms
,
easing
,
callback
)
:
anim
;
status
=
element
.
status
(
anim
);
status
=
element
.
status
(
anim
);
this
.
animate
(
a
);
return
this
.
animate
(
a
).
status
(
a
,
status
*
anim
.
ms
/
a
.
ms
);
return
this
.
status
(
a
,
status
*
anim
.
ms
/
a
.
ms
);
};
};
function
CubicBezierAtTime
(
t
,
p1x
,
p1y
,
p2x
,
p2y
,
duration
)
{
function
CubicBezierAtTime
(
t
,
p1x
,
p1y
,
p2x
,
p2y
,
duration
)
{
var
cx
=
3
*
p1x
,
var
cx
=
3
*
p1x
,
...
...
raphael.js
View file @
33587eb2
...
@@ -2562,8 +2562,7 @@
...
@@ -2562,8 +2562,7 @@
elproto
.
animateWith
=
function
(
element
,
anim
,
params
,
ms
,
easing
,
callback
)
{
elproto
.
animateWith
=
function
(
element
,
anim
,
params
,
ms
,
easing
,
callback
)
{
var
a
=
params
?
R
.
animation
(
params
,
ms
,
easing
,
callback
)
:
anim
;
var
a
=
params
?
R
.
animation
(
params
,
ms
,
easing
,
callback
)
:
anim
;
status
=
element
.
status
(
anim
);
status
=
element
.
status
(
anim
);
this
.
animate
(
a
);
return
this
.
animate
(
a
).
status
(
a
,
status
*
anim
.
ms
/
a
.
ms
);
return
this
.
status
(
a
,
status
*
anim
.
ms
/
a
.
ms
);
};
};
function
CubicBezierAtTime
(
t
,
p1x
,
p1y
,
p2x
,
p2y
,
duration
)
{
function
CubicBezierAtTime
(
t
,
p1x
,
p1y
,
p2x
,
p2y
,
duration
)
{
var
cx
=
3
*
p1x
,
var
cx
=
3
*
p1x
,
...
...
reference.html
View file @
33587eb2
This diff is collapsed.
Click to expand it.
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