Fix Segment#toString().

This commit is contained in:
Jürg Lehni 2011-03-04 23:55:49 +00:00
parent 342c5911c1
commit 815e35fda6

View file

@ -108,8 +108,8 @@ var Segment = this.Segment = Base.extend({
toString: function() {
return '{ point: ' + this.point
+ (this.handleIn ? ', handleIn '+ this.handleIn : '')
+ (this.handleOut ? ', handleOut ' + this.handleOut : '')
+ (this.handleIn ? ', handleIn: ' + this.handleIn : '')
+ (this.handleOut ? ', handleOut: ' + this.handleOut : '')
+ ' }';
}
});