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
13e96e00
authored
Feb 01, 2017
by
junghwan-park
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
https://github.com/nhnent/raphael
parents
2f5c1a27
29aa4063
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
5 deletions
+8
-5
dev/raphael.svg.js
+3
-0
dev/raphael.vml.js
+5
-5
raphael.js
+0
-0
No files found.
dev/raphael.svg.js
View file @
13e96e00
...
@@ -474,6 +474,9 @@ define(["./raphael.core"], function(R) {
...
@@ -474,6 +474,9 @@ define(["./raphael.core"], function(R) {
if
(
o
.
_
.
sx
!=
1
||
o
.
_
.
sy
!=
1
)
{
if
(
o
.
_
.
sx
!=
1
||
o
.
_
.
sy
!=
1
)
{
value
/=
mmax
(
abs
(
o
.
_
.
sx
),
abs
(
o
.
_
.
sy
))
||
1
;
value
/=
mmax
(
abs
(
o
.
_
.
sx
),
abs
(
o
.
_
.
sy
))
||
1
;
}
}
if
(
o
.
paper
.
_vbSize
)
{
value
*=
o
.
paper
.
_vbSize
;
}
node
.
setAttribute
(
att
,
value
);
node
.
setAttribute
(
att
,
value
);
if
(
attrs
[
"stroke-dasharray"
])
{
if
(
attrs
[
"stroke-dasharray"
])
{
addDashes
(
o
,
attrs
[
"stroke-dasharray"
],
params
);
addDashes
(
o
,
attrs
[
"stroke-dasharray"
],
params
);
...
...
dev/raphael.vml.js
View file @
13e96e00
...
@@ -878,9 +878,9 @@ define(["./raphael.core"], function(R) {
...
@@ -878,9 +878,9 @@ define(["./raphael.core"], function(R) {
};
};
R
.
_engine
.
setViewBox
=
function
(
x
,
y
,
w
,
h
,
fit
)
{
R
.
_engine
.
setViewBox
=
function
(
x
,
y
,
w
,
h
,
fit
)
{
R
.
eve
(
"raphael.setViewBox"
,
this
,
this
.
_viewBox
,
[
x
,
y
,
w
,
h
,
fit
]);
R
.
eve
(
"raphael.setViewBox"
,
this
,
this
.
_viewBox
,
[
x
,
y
,
w
,
h
,
fit
]);
var
paperSize
=
this
.
getSize
()
,
var
width
=
this
.
width
,
width
=
paperSize
.
width
,
height
=
this
.
height
,
height
=
paperSize
.
height
,
size
=
1
/
mmax
(
w
/
width
,
h
/
height
)
,
H
,
W
;
H
,
W
;
if
(
fit
)
{
if
(
fit
)
{
H
=
height
/
h
;
H
=
height
/
h
;
...
@@ -896,10 +896,10 @@ define(["./raphael.core"], function(R) {
...
@@ -896,10 +896,10 @@ define(["./raphael.core"], function(R) {
this
.
_viewBoxShift
=
{
this
.
_viewBoxShift
=
{
dx
:
-
x
,
dx
:
-
x
,
dy
:
-
y
,
dy
:
-
y
,
scale
:
paperS
ize
scale
:
s
ize
};
};
this
.
forEach
(
function
(
el
)
{
this
.
forEach
(
function
(
el
)
{
el
.
transform
(
"
...
"
);
el
.
transform
(
""
);
});
});
return
this
;
return
this
;
};
};
...
...
raphael.js
View file @
13e96e00
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