Skip to content
This repository was archived by the owner on Aug 22, 2023. It is now read-only.

Commit a170ecb

Browse files
authored
Update domUtils.js
修复:多行文字,行内有多种字体,全选-修改字体时会有部分文字字体修改失败
1 parent ca2e959 commit a170ecb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_src/core/domUtils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1206,7 +1206,7 @@ var domUtils = (dom.domUtils = {
12061206
continue;
12071207
}
12081208
}
1209-
ci.style.cssText = node.style.cssText + ";" + ci.style.cssText;
1209+
ci.style.cssText = ci.style.cssText + ';' + node.style.cssText;
12101210
if (attrs) {
12111211
var style = attrs.style;
12121212
if (style) {

0 commit comments

Comments
 (0)