@jsyg/texteditor
v1.0.0
Published
svg text editor with JSYG framework
Maintainers
Readme
@jsyg/texteditor
svg text editor with JSYG framework.
Demo
http://yannickbochatay.github.io/jsyg-monorepo/docs/texteditor/
Installation
npm install @jsyg/texteditorExample with module bundler
import TextEditor from "@jsyg/texteditor"
import $ from "jquery"
let editor = new TextEditor('#mySVGContainer')
$('#mySVGContainer').on("click",function(e) {
if ( e.target.tagName == "text") {
editor.target(e.target)
editor.show()
}
})