Merge pull request #1199 from nevernormal1/fix_last_pointer

Initialize variable with the correct name that is actually used
This commit is contained in:
Juriy Zaytsev 2014-02-26 10:48:52 -05:00
commit 242aaa347f

View file

@ -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));
},