Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
raphael
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nhn
raphael
Commits
33587eb2
Commit
33587eb2
authored
Aug 16, 2011
by
Dmitry Baranovskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Small code cleanup and docs update
parent
e1fb048f
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
72 additions
and
29 deletions
+72
-29
raphael-min.js
raphael-min.js
+1
-1
raphael.core.js
raphael.core.js
+1
-2
raphael.js
raphael.js
+1
-2
reference.html
reference.html
+69
-24
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