File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 10
10
- ` Improvement ` - The current block reference will be updated in read-only mode when blocks are clicked
11
11
- ` Fix ` - codex-notifier and codex-tooltip moved from devDependencies to dependencies in package.json to solve type errors
12
12
13
+ ### 2.30.7
14
+
15
+ - ` Fix ` - Link insertion in Safari fixed
16
+
13
17
### 2.30.6
14
18
15
19
- ` Fix ` – Fix the display of ‘Convert To’ near blocks that do not have the ‘conversionConfig.export’ rule specified
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @editorjs/editorjs" ,
3
- "version" : " 2.31.0-rc.4 " ,
3
+ "version" : " 2.31.0-rc.5 " ,
4
4
"description" : " Editor.js — open source block-style WYSIWYG editor with JSON output" ,
5
5
"main" : " dist/editorjs.umd.js" ,
6
6
"module" : " dist/editorjs.mjs" ,
Original file line number Diff line number Diff line change @@ -400,11 +400,6 @@ export default class Dom {
400
400
* @returns {boolean }
401
401
*/
402
402
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
-
408
403
const treeWalker = [ node ] ;
409
404
410
405
while ( treeWalker . length > 0 ) {
You can’t perform that action at this time.
0 commit comments