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
7b67a148
authored
Dec 28, 2013
by
Tomas Alabes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IE 11 parentElement fix
parent
b5bca4b8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
10 deletions
+24
-10
dev/raphael.svg.js
+11
-4
eve
+1
-1
raphael-min.js
+0
-0
raphael.js
+12
-5
No files found.
dev/raphael.svg.js
View file @
7b67a148
...
...
@@ -908,10 +908,17 @@ window.Raphael && window.Raphael.svg && function(R) {
var
hide
=
true
;
}
var
canvasHidden
=
false
,
containerStyle
=
this
.
paper
.
canvas
.
parentElement
.
style
;
if
(
containerStyle
.
display
==
"none"
){
canvasHidden
=
true
;
containerStyle
.
display
=
""
;
containerStyle
;
if
(
this
.
paper
.
canvas
.
parentElement
)
{
containerStyle
=
this
.
paper
.
canvas
.
parentElement
.
style
;
}
//IE10+ can't find parentElement
else
if
(
this
.
paper
.
canvas
.
parentNode
)
{
containerStyle
=
this
.
paper
.
canvas
.
parentNode
.
style
;
}
if
(
containerStyle
&&
containerStyle
.
display
==
"none"
)
{
canvasHidden
=
true
;
containerStyle
.
display
=
""
;
}
var
bbox
=
{};
try
{
...
...
eve
@
42374a78
Subproject commit
eef80ed8d188423c2272746fb8ae5cc8dad84cb
1
Subproject commit
42374a7804189a8e6dcc30675842888a8ce6e74
1
raphael-min.js
View file @
7b67a148
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.js
View file @
7b67a148
...
...
@@ -376,7 +376,7 @@
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
));
})(
this
);
})(
window
||
this
);
// ┌─────────────────────────────────────────────────────────────────────┐ \\
// │ "Raphaël 2.1.0" - JavaScript Vector Library │ \\
// ├─────────────────────────────────────────────────────────────────────┤ \\
...
...
@@ -6708,10 +6708,17 @@
var
hide
=
true
;
}
var
canvasHidden
=
false
,
containerStyle
=
this
.
paper
.
canvas
.
parentElement
.
style
;
if
(
containerStyle
.
display
==
"none"
){
canvasHidden
=
true
;
containerStyle
.
display
=
""
;
containerStyle
;
if
(
this
.
paper
.
canvas
.
parentElement
)
{
containerStyle
=
this
.
paper
.
canvas
.
parentElement
.
style
;
}
//IE10+ can't find parentElement
else
if
(
this
.
paper
.
canvas
.
parentNode
)
{
containerStyle
=
this
.
paper
.
canvas
.
parentNode
.
style
;
}
if
(
containerStyle
&&
containerStyle
.
display
==
"none"
)
{
canvasHidden
=
true
;
containerStyle
.
display
=
""
;
}
var
bbox
=
{};
try
{
...
...
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