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
475454d2
authored
Sep 05, 2011
by
Dmitry Baranovskiy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Proper merge of clip-rect fix.
parent
45a97e76
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
5 deletions
+4
-5
raphael-min.js
+0
-0
raphael.js
+1
-1
raphael.vml.js
+3
-4
No files found.
raphael-min.js
View file @
475454d2
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.js
View file @
475454d2
...
...
@@ -4368,7 +4368,7 @@ window.Raphael.svg && function (R) {
R
.
prototype
.
renderfix
=
function
()
{
var
cnvs
=
this
.
canvas
,
s
=
cnvs
.
style
,
pos
=
cnvs
.
getScreenCTM
(),
pos
=
cnvs
.
getScreenCTM
()
||
cnvs
.
createSVGMatrix
()
,
left
=
-
pos
.
e
%
1
,
top
=
-
pos
.
f
%
1
;
if
(
left
||
top
)
{
...
...
raphael.vml.js
View file @
475454d2
...
...
@@ -190,8 +190,7 @@ window.Raphael.vml && function (R) {
rect
[
2
]
=
+
rect
[
2
]
+
(
+
rect
[
0
]);
rect
[
3
]
=
+
rect
[
3
]
+
(
+
rect
[
1
]);
var
div
=
node
.
clipRect
||
R
.
_g
.
doc
.
createElement
(
"div"
),
dstyle
=
div
.
style
,
group
=
node
.
parentNode
;
dstyle
=
div
.
style
;
dstyle
.
clip
=
R
.
format
(
"rect({1}px {2}px {3}px {0}px)"
,
rect
);
if
(
!
node
.
clipRect
)
{
dstyle
.
position
=
"absolute"
;
...
...
@@ -199,8 +198,8 @@ window.Raphael.vml && function (R) {
dstyle
.
left
=
0
;
dstyle
.
width
=
o
.
paper
.
width
+
"px"
;
dstyle
.
height
=
o
.
paper
.
height
+
"px"
;
group
.
parentNode
.
insertBefore
(
div
,
group
);
div
.
appendChild
(
group
);
node
.
parentNode
.
insertBefore
(
div
,
node
);
div
.
appendChild
(
node
);
node
.
clipRect
=
div
;
}
}
...
...
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