mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-20 22:39:50 -05:00
Fix porting error in GradientStop.
This commit is contained in:
parent
db1a25933a
commit
93d3214a35
1 changed files with 1 additions and 1 deletions
|
@ -42,6 +42,6 @@ var GradientStop = this.GradientStop = Base.extend({
|
|||
equals: function(stop) {
|
||||
return stop == this || stop instanceof GradientStop
|
||||
&& this._color.equals(stop._color)
|
||||
&& rampPoint == stop._rampPoint;
|
||||
&& this._rampPoint == stop._rampPoint;
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue