소스 검색

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 );