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
007ee4f4
authored
Feb 21, 2014
by
Adrian Phinney
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow unsetting the stroke-dasharray in VML. Fixes #617.
parent
b003c541
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
2 deletions
+2
-2
dev/raphael.vml.js
+1
-1
raphael-min.js
+0
-0
raphael.js
+1
-1
No files found.
dev/raphael.vml.js
View file @
007ee4f4
...
@@ -306,7 +306,7 @@ window.Raphael && window.Raphael.vml && function(R) {
...
@@ -306,7 +306,7 @@ window.Raphael && window.Raphael.vml && function(R) {
params
[
"stroke-linejoin"
]
&&
(
stroke
.
joinstyle
=
params
[
"stroke-linejoin"
]
||
"miter"
);
params
[
"stroke-linejoin"
]
&&
(
stroke
.
joinstyle
=
params
[
"stroke-linejoin"
]
||
"miter"
);
stroke
.
miterlimit
=
params
[
"stroke-miterlimit"
]
||
8
;
stroke
.
miterlimit
=
params
[
"stroke-miterlimit"
]
||
8
;
params
[
"stroke-linecap"
]
&&
(
stroke
.
endcap
=
params
[
"stroke-linecap"
]
==
"butt"
?
"flat"
:
params
[
"stroke-linecap"
]
==
"square"
?
"square"
:
"round"
);
params
[
"stroke-linecap"
]
&&
(
stroke
.
endcap
=
params
[
"stroke-linecap"
]
==
"butt"
?
"flat"
:
params
[
"stroke-linecap"
]
==
"square"
?
"square"
:
"round"
);
if
(
params
[
"stroke-dasharray"
]
)
{
if
(
"stroke-dasharray"
in
params
)
{
var
dasharray
=
{
var
dasharray
=
{
"-"
:
"shortdash"
,
"-"
:
"shortdash"
,
"."
:
"shortdot"
,
"."
:
"shortdot"
,
...
...
raphael-min.js
View file @
007ee4f4
This source diff could not be displayed because it is too large. You can
view the blob
instead.
raphael.js
View file @
007ee4f4
...
@@ -7433,7 +7433,7 @@
...
@@ -7433,7 +7433,7 @@
params
[
"stroke-linejoin"
]
&&
(
stroke
.
joinstyle
=
params
[
"stroke-linejoin"
]
||
"miter"
);
params
[
"stroke-linejoin"
]
&&
(
stroke
.
joinstyle
=
params
[
"stroke-linejoin"
]
||
"miter"
);
stroke
.
miterlimit
=
params
[
"stroke-miterlimit"
]
||
8
;
stroke
.
miterlimit
=
params
[
"stroke-miterlimit"
]
||
8
;
params
[
"stroke-linecap"
]
&&
(
stroke
.
endcap
=
params
[
"stroke-linecap"
]
==
"butt"
?
"flat"
:
params
[
"stroke-linecap"
]
==
"square"
?
"square"
:
"round"
);
params
[
"stroke-linecap"
]
&&
(
stroke
.
endcap
=
params
[
"stroke-linecap"
]
==
"butt"
?
"flat"
:
params
[
"stroke-linecap"
]
==
"square"
?
"square"
:
"round"
);
if
(
params
[
"stroke-dasharray"
]
)
{
if
(
"stroke-dasharray"
in
params
)
{
var
dasharray
=
{
var
dasharray
=
{
"-"
:
"shortdash"
,
"-"
:
"shortdash"
,
"."
:
"shortdot"
,
"."
:
"shortdot"
,
...
...
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