mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
Fix Segment#toString().
This commit is contained in:
parent
342c5911c1
commit
815e35fda6
1 changed files with 2 additions and 2 deletions
|
@ -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 : '')
|
||||
+ ' }';
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue