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
bef7f6b0
authored
Jan 07, 2014
by
Vinícius Ebersol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix syntax that is causing bug on opera 12.5
parent
a87d79fd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
dev/raphael.core.js
+2
-2
raphael-min.js
+0
-0
raphael.js
+3
-3
No files found.
dev/raphael.core.js
View file @
bef7f6b0
...
@@ -1983,11 +1983,11 @@
...
@@ -1983,11 +1983,11 @@
attrs
=
{
x
:
0
,
y
:
0
,
bx
:
0
,
by
:
0
,
X
:
0
,
Y
:
0
,
qx
:
null
,
qy
:
null
},
attrs
=
{
x
:
0
,
y
:
0
,
bx
:
0
,
by
:
0
,
X
:
0
,
Y
:
0
,
qx
:
null
,
qy
:
null
},
attrs2
=
{
x
:
0
,
y
:
0
,
bx
:
0
,
by
:
0
,
X
:
0
,
Y
:
0
,
qx
:
null
,
qy
:
null
},
attrs2
=
{
x
:
0
,
y
:
0
,
bx
:
0
,
by
:
0
,
X
:
0
,
Y
:
0
,
qx
:
null
,
qy
:
null
},
processPath
=
function
(
path
,
d
,
pcom
)
{
processPath
=
function
(
path
,
d
,
pcom
)
{
var
nx
,
ny
;
var
nx
,
ny
,
tq
=
{
T
:
1
,
Q
:
1
}
;
if
(
!
path
)
{
if
(
!
path
)
{
return
[
"C"
,
d
.
x
,
d
.
y
,
d
.
x
,
d
.
y
,
d
.
x
,
d
.
y
];
return
[
"C"
,
d
.
x
,
d
.
y
,
d
.
x
,
d
.
y
,
d
.
x
,
d
.
y
];
}
}
!
(
path
[
0
]
in
{
T
:
1
,
Q
:
1
}
)
&&
(
d
.
qx
=
d
.
qy
=
null
);
!
(
path
[
0
]
in
tq
)
&&
(
d
.
qx
=
d
.
qy
=
null
);
switch
(
path
[
0
])
{
switch
(
path
[
0
])
{
case
"M"
:
case
"M"
:
d
.
X
=
path
[
1
];
d
.
X
=
path
[
1
];
...
...
raphael-min.js
View file @
bef7f6b0
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.js
View file @
bef7f6b0
...
@@ -376,7 +376,7 @@
...
@@ -376,7 +376,7 @@
return
"You are running Eve "
+
version
;
return
"You are running Eve "
+
version
;
};
};
(
typeof
module
!=
"undefined"
&&
module
.
exports
)
?
(
module
.
exports
=
eve
)
:
(
typeof
define
!=
"undefined"
?
(
define
(
"eve"
,
[],
function
()
{
return
eve
;
}))
:
(
glob
.
eve
=
eve
));
(
typeof
module
!=
"undefined"
&&
module
.
exports
)
?
(
module
.
exports
=
eve
)
:
(
typeof
define
!=
"undefined"
?
(
define
(
"eve"
,
[],
function
()
{
return
eve
;
}))
:
(
glob
.
eve
=
eve
));
})(
this
);
})(
window
||
this
);
// ┌─────────────────────────────────────────────────────────────────────┐ \\
// ┌─────────────────────────────────────────────────────────────────────┐ \\
// │ "Raphaël 2.1.2" - JavaScript Vector Library │ \\
// │ "Raphaël 2.1.2" - JavaScript Vector Library │ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
...
@@ -2362,11 +2362,11 @@
...
@@ -2362,11 +2362,11 @@
attrs
=
{
x
:
0
,
y
:
0
,
bx
:
0
,
by
:
0
,
X
:
0
,
Y
:
0
,
qx
:
null
,
qy
:
null
},
attrs
=
{
x
:
0
,
y
:
0
,
bx
:
0
,
by
:
0
,
X
:
0
,
Y
:
0
,
qx
:
null
,
qy
:
null
},
attrs2
=
{
x
:
0
,
y
:
0
,
bx
:
0
,
by
:
0
,
X
:
0
,
Y
:
0
,
qx
:
null
,
qy
:
null
},
attrs2
=
{
x
:
0
,
y
:
0
,
bx
:
0
,
by
:
0
,
X
:
0
,
Y
:
0
,
qx
:
null
,
qy
:
null
},
processPath
=
function
(
path
,
d
,
pcom
)
{
processPath
=
function
(
path
,
d
,
pcom
)
{
var
nx
,
ny
;
var
nx
,
ny
,
tq
=
{
T
:
1
,
Q
:
1
}
;
if
(
!
path
)
{
if
(
!
path
)
{
return
[
"C"
,
d
.
x
,
d
.
y
,
d
.
x
,
d
.
y
,
d
.
x
,
d
.
y
];
return
[
"C"
,
d
.
x
,
d
.
y
,
d
.
x
,
d
.
y
,
d
.
x
,
d
.
y
];
}
}
!
(
path
[
0
]
in
{
T
:
1
,
Q
:
1
}
)
&&
(
d
.
qx
=
d
.
qy
=
null
);
!
(
path
[
0
]
in
tq
)
&&
(
d
.
qx
=
d
.
qy
=
null
);
switch
(
path
[
0
])
{
switch
(
path
[
0
])
{
case
"M"
:
case
"M"
:
d
.
X
=
path
[
1
];
d
.
X
=
path
[
1
];
...
...
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