8
0
فهرست منبع

Docs: changesDone was renamed to change.

Piotrek Koszuliński 7 سال پیش
والد
کامیت
d5fc6413d6
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      packages/ckeditor5-markdown-gfm/docs/_snippets/features/markdown.js

+ 1 - 1
packages/ckeditor5-markdown-gfm/docs/_snippets/features/markdown.js

@@ -31,7 +31,7 @@ ClassicEditor
 
 		const outputElement = document.querySelector( '#snippet-markdown-output' );
 
-		editor.model.document.on( 'changesDone', () => {
+		editor.model.document.on( 'change', () => {
 			outputElement.innerText = editor.getData();
 		} );