mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-05-24 13:13:44 +00:00
Merge pull request #1199 from nevernormal1/fix_last_pointer
Initialize variable with the correct name that is actually used
This commit is contained in:
commit
242aaa347f
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ fabric.util.object.extend(fabric.IText.prototype, /** @lends fabric.IText.protot
|
|||
// for triple click
|
||||
this.__lastLastClickTime = +new Date();
|
||||
|
||||
this.lastPointer = { };
|
||||
this.__lastPointer = { };
|
||||
|
||||
this.on('mousedown', this.onMouseDown.bind(this));
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue