Skip to content

Commit d9f301f

Browse files
committed
Merge branch 'v-2-30-6' into next
2 parents 58a7a9e + 597bde3 commit d9f301f

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

docs/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
- `Improvement` - The current block reference will be updated in read-only mode when blocks are clicked
1111
- `Fix` - codex-notifier and codex-tooltip moved from devDependencies to dependencies in package.json to solve type errors
1212

13+
### 2.30.7
14+
15+
- `Fix` - Link insertion in Safari fixed
16+
1317
### 2.30.6
1418

1519
- `Fix` – Fix the display of ‘Convert To’ near blocks that do not have the ‘conversionConfig.export’ rule specified

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@editorjs/editorjs",
3-
"version": "2.31.0-rc.4",
3+
"version": "2.31.0-rc.5",
44
"description": "Editor.js — open source block-style WYSIWYG editor with JSON output",
55
"main": "dist/editorjs.umd.js",
66
"module": "dist/editorjs.mjs",

src/components/dom.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -400,11 +400,6 @@ export default class Dom {
400400
* @returns {boolean}
401401
*/
402402
public static isEmpty(node: Node, ignoreChars?: string): boolean {
403-
/**
404-
* Normalize node to merge several text nodes to one to reduce tree walker iterations
405-
*/
406-
node.normalize();
407-
408403
const treeWalker = [ node ];
409404

410405
while (treeWalker.length > 0) {

0 commit comments

Comments
 (0)