mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-05 20:32:00 -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() {
|
toString: function() {
|
||||||
return '{ type: ' + this.type
|
return '{ type: ' + this.type
|
||||||
+ ', point: ' + this.point
|
+ ', point: ' + this.getPoint()
|
||||||
+ ', count: ' + this.count
|
+ ', count: ' + this.getCount()
|
||||||
+ ', modifiers: ' + this.getModifiers()
|
+ ', modifiers: ' + this.getModifiers()
|
||||||
+ ' }';
|
+ ' }';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue