8
0
Просмотр исходного кода

Merge branch 'master' into i/6091

# Conflicts:
#	tests/input.js
Maciej Gołaszewski 5 лет назад
Родитель
Сommit
784f78c4e9

+ 1 - 1
packages/ckeditor5-typing/docs/_snippets/features/text-transformation-extended.js

@@ -47,7 +47,7 @@ ClassicEditor
 						from: /(\. )([a-z])$/,
 						to: matches => [ null, matches[ 1 ].toUpperCase() ]
 					}
-				],
+				]
 			}
 		}
 	} )

+ 1 - 1
packages/ckeditor5-typing/tests/bogusbr-integration.js

@@ -194,7 +194,7 @@ describe( 'Typing – bogus BR integration', () => {
 				generateMutationMock( 'childList', paragraph, text, [ br ] ),
 				generateMutationMock( 'characterData', text ),
 				generateMutationMock( 'characterData', text ),
-				generateMutationMock( 'characterData', text ),
+				generateMutationMock( 'characterData', text )
 			] );
 		} );
 	} );

+ 1 - 1
packages/ckeditor5-typing/tests/input.js

@@ -580,7 +580,7 @@ describe( 'Input feature', () => {
 					type: 'children',
 					oldChildren: Array.from( viewRoot.getChild( 0 ).getChild( 0 ).getChildren() ),
 					newChildren: [
-						new ViewElement( viewDocument, 'strong', null, new ViewText( viewDocument, 'Fx' ) ),
+						new ViewElement( viewDocument, 'strong', null, new ViewText( viewDocument, 'Fx' ) )
 					],
 					node: viewRoot.getChild( 0 ).getChild( 0 )
 				}