Skip to content

Commit

Permalink
Merge pull request #624 from ecomfe/master
Browse files Browse the repository at this point in the history
Create 4.3.2 release branch
  • Loading branch information
100pah committed Aug 5, 2020
2 parents d4e1bdb + d3e556c commit 9971dd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/svg/helper/GradientManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ GradientManager.prototype.updateDom = function (gradient, dom) {
stop.setAttribute('offset', colors[i].offset * 100 + '%');

var color = colors[i].color;
if (color.indexOf('rgba' > -1)) {
if (color.indexOf('rgba') > -1) {
// Fix Safari bug that stop-color not recognizing alpha #9014
var opacity = colorTool.parse(color)[3];
var hex = colorTool.toHex(color);
Expand Down

0 comments on commit 9971dd6

Please sign in to comment.