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
75a5818a
authored
9 years ago
by
Tomas Alabes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
@bjouhier - set stop-opacity in gradient defs
parent
3c97d14c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
3 deletions
+8
-3
dev/raphael.core.js
+1
-0
dev/raphael.svg.js
+2
-1
history.md
+2
-1
raphael-min.js
+0
-0
raphael.js
+3
-1
No files found.
dev/raphael.core.js
View file @
75a5818a
...
...
@@ -2124,6 +2124,7 @@
if
(
dot
.
color
.
error
)
{
return
null
;
}
dot
.
opacity
=
dot
.
color
.
opacity
;
dot
.
color
=
dot
.
color
.
hex
;
par
[
2
]
&&
(
dot
.
offset
=
par
[
2
]
+
"%"
);
dots
.
push
(
dot
);
...
...
This diff is collapsed.
Click to expand it.
dev/raphael.svg.js
View file @
75a5818a
...
...
@@ -121,7 +121,8 @@ window.Raphael && window.Raphael.svg && function(R) {
for
(
var
i
=
0
,
ii
=
dots
.
length
;
i
<
ii
;
i
++
)
{
el
.
appendChild
(
$
(
"stop"
,
{
offset
:
dots
[
i
].
offset
?
dots
[
i
].
offset
:
i
?
"100%"
:
"0%"
,
"stop-color"
:
dots
[
i
].
color
||
"#fff"
"stop-color"
:
dots
[
i
].
color
||
"#fff"
,
"stop-opacity"
:
isFinite
(
dots
[
i
].
opacity
)
?
dots
[
i
].
opacity
:
1
}));
}
}
...
...
This diff is collapsed.
Click to expand it.
history.md
View file @
75a5818a
2.1.5 • WIP
------------------
*
fixed rounding issue in RGB formatter
*
Set stop-opacity in gradient defs
*
Fixed rounding issue in RGB formatter
2.
1.4 • 2015-03-09
------------------
...
...
This diff is collapsed.
Click to expand it.
raphael-min.js
View file @
75a5818a
This source diff could not be displayed because it is too large. You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
raphael.js
View file @
75a5818a
...
...
@@ -2503,6 +2503,7 @@
if
(
dot
.
color
.
error
)
{
return
null
;
}
dot
.
opacity
=
dot
.
color
.
opacity
;
dot
.
color
=
dot
.
color
.
hex
;
par
[
2
]
&&
(
dot
.
offset
=
par
[
2
]
+
"%"
);
dots
.
push
(
dot
);
...
...
@@ -5916,7 +5917,8 @@
for
(
var
i
=
0
,
ii
=
dots
.
length
;
i
<
ii
;
i
++
)
{
el
.
appendChild
(
$
(
"stop"
,
{
offset
:
dots
[
i
].
offset
?
dots
[
i
].
offset
:
i
?
"100%"
:
"0%"
,
"stop-color"
:
dots
[
i
].
color
||
"#fff"
"stop-color"
:
dots
[
i
].
color
||
"#fff"
,
"stop-opacity"
:
isFinite
(
dots
[
i
].
opacity
)
?
dots
[
i
].
opacity
:
1
}));
}
}
...
...
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