Преглед на файлове

Changed: Default value for `context.isStrong` is not needed.

Szymon Cofalik преди 7 години
родител
ревизия
87a7e2e7fa
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      packages/ckeditor5-engine/src/model/operation/transform.js

+ 1 - 1
packages/ckeditor5-engine/src/model/operation/transform.js

@@ -72,7 +72,7 @@ function updateBaseVersions( operations, baseVersion ) {
 	return operations;
 }
 
-function transform( a, b, context = { isStrong: false } ) {
+function transform( a, b, context = {} ) {
 	const transformationFunction = getTransformation( a, b );
 
 	return transformationFunction( a.clone(), b, context );