mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
Use getters rather than beans.
This commit is contained in:
parent
e79d890432
commit
de2bbe844b
1 changed files with 2 additions and 2 deletions
|
@ -194,8 +194,8 @@ var ToolEvent = this.ToolEvent = Base.extend({
|
|||
|
||||
toString: function() {
|
||||
return '{ type: ' + this.type
|
||||
+ ', point: ' + this.point
|
||||
+ ', count: ' + this.count
|
||||
+ ', point: ' + this.getPoint()
|
||||
+ ', count: ' + this.getCount()
|
||||
+ ', modifiers: ' + this.getModifiers()
|
||||
+ ' }';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue