瀏覽代碼

Added missing comment.

Maciej Bukowski 6 年之前
父節點
當前提交
c3f2d31004
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      packages/ckeditor5-engine/src/model/document.js

+ 1 - 0
packages/ckeditor5-engine/src/model/document.js

@@ -151,6 +151,7 @@ export default class Document {
 			}
 		}, { priority: 'low' } );
 
+		// Listen to selection changes. If selection changed, mark it.
 		this.listenTo( this.selection, 'change', () => {
 			this._hasSelectionChangedFromTheLastChangeBlock = true;
 		} );