Parcourir la source

Fixed CC – this is a protected function anyway.

Piotrek Koszuliński il y a 9 ans
Parent
commit
f3721b5339
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      packages/ckeditor5-undo/src/basecommand.js

+ 1 - 1
packages/ckeditor5-undo/src/basecommand.js

@@ -110,7 +110,7 @@ export default class BaseCommand extends Command {
 
 // Performs a transformation of delta set `setToTransform` by given delta set `setToTransformBy`.
 // If `setToTransform` deltas are more important than `setToTransformBy` deltas, `isStrong` should be true.
-export function transformDelta( setToTransform, setToTransformBy, isStrong = false ) {
+export function transformDelta( setToTransform, setToTransformBy, isStrong ) {
 	let results = [];
 
 	for ( let toTransform of setToTransform ) {