mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-08 13:52:06 -05:00
Fix GradientColor#clone().
This commit is contained in:
parent
b461368b18
commit
d8b73f3671
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ var GradientColor = this.GradientColor = Color.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
clone: function() {
|
clone: function() {
|
||||||
return new GradientColor(thisgradient, this._origin, this._destination,
|
return new GradientColor(this.gradient, this._origin, this._destination,
|
||||||
this._hilite);
|
this._hilite);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue