feat: 更新资源

This commit is contained in:
dhx
2022-10-04 15:31:23 +08:00
parent faa89ce9c4
commit c7c96813ab
1215 changed files with 3744 additions and 935440 deletions
+6 -5
View File
@@ -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 = '';
}
File diff suppressed because one or more lines are too long