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 11# Changelog
22
3+ ### 2.30.7
4+
5+ - ` Fix ` - Link insertion in Safari fixed
6+
37### 2.30.6
48
59– ` 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 11{
22 "name" : " @editorjs/editorjs" ,
3- "version" : " 2.30.6 " ,
3+ "version" : " 2.30.7 " ,
44 "description" : " Editor.js — open source block-style WYSIWYG editor with JSON output" ,
55 "main" : " dist/editorjs.umd.js" ,
66 "module" : " dist/editorjs.mjs" ,
Original file line number Diff line number Diff 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 ) {
You can’t perform that action at this time.
0 commit comments