feat: 更新资源
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* TinyMCE version 6.0.3 (2022-05-25)
|
||||
* TinyMCE version 6.2.0 (2022-09-08)
|
||||
*/
|
||||
|
||||
(function () {
|
||||
@@ -237,10 +237,11 @@
|
||||
const textBlocks = [];
|
||||
let txt = '';
|
||||
const treeWalker = new global$1(node, node);
|
||||
while (node = treeWalker.next()) {
|
||||
if (node.nodeType === 3) {
|
||||
txt += removeZwsp$1(node.data);
|
||||
} else if (isNewline(node) && txt.length) {
|
||||
let tempNode;
|
||||
while (tempNode = treeWalker.next()) {
|
||||
if (tempNode.nodeType === 3) {
|
||||
txt += removeZwsp$1(tempNode.data);
|
||||
} else if (isNewline(tempNode) && txt.length) {
|
||||
textBlocks.push(txt);
|
||||
txt = '';
|
||||
}
|
||||
|
||||
+2
-2
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user