Fix:修复在Firefox浏览器中富文本节点无法显示的问题

This commit is contained in:
wanglin2 2023-08-18 23:06:30 +08:00
parent 008e697b74
commit 8b8d549abd

View File

@ -140,11 +140,10 @@ function createRichTextNode() {
height = Math.ceil(height)
g.attr('data-width', width)
g.attr('data-height', height)
html = div.innerHTML
let foreignObject = new ForeignObject()
foreignObject.width(width)
foreignObject.height(height)
foreignObject.add(SVG(html))
foreignObject.add(div.children[0])
g.add(foreignObject)
return {
node: g,