mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-05-19 02:51:07 +00:00
Merge pull request #2278 from sapics/fix-undefined-function
fix undefined function call
This commit is contained in:
commit
ebd2135b08
1 changed files with 1 additions and 1 deletions
|
|
@ -162,7 +162,7 @@ fabric.util.object.extend(fabric.IText.prototype, /** @lends fabric.IText.protot
|
|||
* @return {Number} Index of a character
|
||||
*/
|
||||
getSelectionStartFromPointer: function(e) {
|
||||
var mouseOffset = this._getLocalPointer(e),
|
||||
var mouseOffset = this.getLocalPointer(e),
|
||||
prevWidth = 0,
|
||||
width = 0,
|
||||
height = 0,
|
||||
|
|
|
|||
Loading…
Reference in a new issue