Kaynağa Gözat

Minor improvements to error messages used in manual tests and a sample. [skip ci]

Aleksander Nowodzinski 6 yıl önce
ebeveyn
işleme
874c5bfa4c

+ 2 - 2
packages/ckeditor5-build-balloon-block/README.md

@@ -40,7 +40,7 @@ And use it in your website:
 			window.editor = editor;
 		} )
 		.catch( error => {
-			console.error( 'There was a problem with initializing the editor', error );
+			console.error( 'There was a problem initializing the editor.', error );
 		} );
 </script>
 ```
@@ -59,7 +59,7 @@ BalloonEditor
 		window.editor = editor;
 	} )
 	.catch( error => {
-		console.error( 'There was a problem with initializing the editor', error );
+		console.error( 'There was a problem initializing the editor.', error );
 	} );
 ```
 

+ 1 - 1
packages/ckeditor5-build-balloon-block/sample/index.html

@@ -33,7 +33,7 @@
 			window.editor = editor;
 		} )
 		.catch( error => {
-			console.error( 'There was a problem with initializing the editor', error );
+			console.error( 'There was a problem initializing the editor.', error );
 		} );
 </script>
 

+ 1 - 1
packages/ckeditor5-build-balloon-block/tests/manual/ckeditor-cjs-version.js

@@ -13,5 +13,5 @@ BalloonEditor.create( document.querySelector( '#editor' ) )
 		window.editor = editor;
 	} )
 	.catch( error => {
-		console.error( 'There was a problem with initializing the editor', error );
+		console.error( 'There was a problem initializing the editor.', error );
 	} );

+ 1 - 1
packages/ckeditor5-build-balloon-block/tests/manual/ckeditor.js

@@ -12,5 +12,5 @@ BalloonEditor.create( document.querySelector( '#editor' ) )
 		window.editor = editor;
 	} )
 	.catch( error => {
-		console.error( 'There was a problem with initializing the editor', error );
+		console.error( 'There was a problem initializing the editor.', error );
 	} );