Explorar el Código

Added missing comment.

Maciej Bukowski hace 6 años
padre
commit
c3f2d31004
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  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;
 		} );