Ver código fonte

Docs: Aligned the text to the latest changes in ckeditor5-autosave.

Piotrek Koszuliński 7 anos atrás
pai
commit
517543cdbf

+ 1 - 1
docs/_snippets/builds/saving-data/manualsave.js

@@ -39,7 +39,7 @@ function handleSaveButton( editor ) {
 
 	saveButton.addEventListener( 'click', evt => {
 		const data = editor.getData();
-		const action = pendingActions.add( 'Saving in progress.' );
+		const action = pendingActions.add( 'Saving changes' );
 
 		evt.preventDefault();
 

+ 1 - 1
docs/builds/guides/integration/saving-data.md

@@ -244,7 +244,7 @@ function handleSaveButton( editor ) {
 
 	saveButton.addEventListener( 'click', evt => {
 		const data = editor.getData();
-		const action = pendingActions.add( 'Saving in progress.' );
+		const action = pendingActions.add( 'Saving changes' );
 
 		evt.preventDefault();