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
5423c26b
authored
May 19, 2013
by
Tomas Alabes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed transform animation bug, @jroper
parent
b6cc7248
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
16 deletions
+18
-16
raphael-min.js
+0
-0
raphael.core.js
+9
-8
raphael.js
+9
-8
No files found.
raphael-min.js
View file @
5423c26b
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.core.js
View file @
5423c26b
//
┌─────────────────────────────────────────────────────────────────────┐
\\
//
│ "Raphaël 2.1.0" - JavaScript Vector Library │
\\
//
├─────────────────────────────────────────────────────────────────────┤
\\
//
│ Copyright (c) 2008-2011 Dmitry Baranovskiy (http://raphaeljs.com) │
\\
//
│ Copyright (c) 2008-2011 Sencha Labs (http://sencha.com) │
\\
//
│ Licensed under the MIT (http://raphaeljs.com/license.html) license. │
\\
//
└─────────────────────────────────────────────────────────────────────┘
\\
//
???????????????????????????????????????????????????????????????????????
\\
//
? "Raphaël 2.1.0" - JavaScript Vector Library ?
\\
//
???????????????????????????????????????????????????????????????????????
\\
//
? Copyright (c) 2008-2011 Dmitry Baranovskiy (http://raphaeljs.com) ?
\\
//
? Copyright (c) 2008-2011 Sencha Labs (http://sencha.com) ?
\\
//
? Licensed under the MIT (http://raphaeljs.com/license.html) license. ?
\\
//
???????????????????????????????????????????????????????????????????????
\\
(
function
(
glob
,
factory
)
{
// AMD support
if
(
typeof
define
===
"function"
&&
define
.
amd
)
{
...
...
@@ -819,7 +819,7 @@
return
{
h
:
H
,
s
:
S
,
l
:
L
,
toString
:
hsltoString
};
};
R
.
_path2string
=
function
()
{
return
this
.
join
(
","
).
replace
(
p2s
,
"$1"
);
return
Array
.
prototype
.
join
(
","
).
replace
(
p2s
,
"$1"
);
};
function
repush
(
array
,
item
)
{
for
(
var
i
=
0
,
ii
=
array
.
length
;
i
<
ii
;
i
++
)
if
(
array
[
i
]
===
item
)
{
...
...
@@ -4868,6 +4868,7 @@
item
=
this
.
items
[
--
i
].
animate
(
anim
);
while
(
i
--
)
{
this
.
items
[
i
]
&&
!
this
.
items
[
i
].
removed
&&
this
.
items
[
i
].
animateWith
(
item
,
anim
,
anim
);
(
this
.
items
[
i
]
&&
!
this
.
items
[
i
].
removed
)
||
len
--
;
}
return
this
;
};
...
...
raphael.js
View file @
5423c26b
...
...
@@ -377,13 +377,13 @@
};
(
typeof
module
!=
"undefined"
&&
module
.
exports
)
?
(
module
.
exports
=
eve
)
:
(
typeof
define
!=
"undefined"
?
(
define
(
"eve"
,
[],
function
()
{
return
eve
;
}))
:
(
glob
.
eve
=
eve
));
})(
this
);
//
┌─────────────────────────────────────────────────────────────────────┐
\\
//
│ "Raphaël 2.1.0" - JavaScript Vector Library │
\\
//
├─────────────────────────────────────────────────────────────────────┤
\\
//
│ Copyright (c) 2008-2011 Dmitry Baranovskiy (http://raphaeljs.com) │
\\
//
│ Copyright (c) 2008-2011 Sencha Labs (http://sencha.com) │
\\
//
│ Licensed under the MIT (http://raphaeljs.com/license.html) license. │
\\
//
└─────────────────────────────────────────────────────────────────────┘
\\
//
???????????????????????????????????????????????????????????????????????
\\
//
? "Raphaël 2.1.0" - JavaScript Vector Library ?
\\
//
???????????????????????????????????????????????????????????????????????
\\
//
? Copyright (c) 2008-2011 Dmitry Baranovskiy (http://raphaeljs.com) ?
\\
//
? Copyright (c) 2008-2011 Sencha Labs (http://sencha.com) ?
\\
//
? Licensed under the MIT (http://raphaeljs.com/license.html) license. ?
\\
//
???????????????????????????????????????????????????????????????????????
\\
(
function
(
glob
,
factory
)
{
// AMD support
if
(
typeof
define
===
"function"
&&
define
.
amd
)
{
...
...
@@ -1198,7 +1198,7 @@
return
{
h
:
H
,
s
:
S
,
l
:
L
,
toString
:
hsltoString
};
};
R
.
_path2string
=
function
()
{
return
this
.
join
(
","
).
replace
(
p2s
,
"$1"
);
return
Array
.
prototype
.
join
(
","
).
replace
(
p2s
,
"$1"
);
};
function
repush
(
array
,
item
)
{
for
(
var
i
=
0
,
ii
=
array
.
length
;
i
<
ii
;
i
++
)
if
(
array
[
i
]
===
item
)
{
...
...
@@ -5247,6 +5247,7 @@
item
=
this
.
items
[
--
i
].
animate
(
anim
);
while
(
i
--
)
{
this
.
items
[
i
]
&&
!
this
.
items
[
i
].
removed
&&
this
.
items
[
i
].
animateWith
(
item
,
anim
,
anim
);
(
this
.
items
[
i
]
&&
!
this
.
items
[
i
].
removed
)
||
len
--
;
}
return
this
;
};
...
...
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