File tree 3 files changed +5
-6
lines changed
3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ### 2.30.7
4
+
5
+ - ` Fix ` - Link insertion in Safari fixed
6
+
3
7
### 2.30.6
4
8
5
9
– ` 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.30.6 " ,
3
+ "version" : " 2.30.7 " ,
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