I would like to be able to add text to the canvas and go directly to editing the text mode, where the cursor is visible, and you can start typing.
So far I have this code that adds text and sets it as active, but I'm not sure how to go into text editing mode. Any ideas? Thank!
var fabicText = new fabric.IText('Click to change Text', { left: 100, top: 100 });
fabicText.set({ fill: getSelectedColorText() });
_fabicCanvas.add(fabicText);
_fabicCanvas.setActiveObject(fabicText);
source
share