Fix porting error in GradientStop.

This commit is contained in:
Jürg Lehni 2011-05-18 10:04:46 +01:00
parent db1a25933a
commit 93d3214a35

View file

@ -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;
}
});