ソースを参照

Merge pull request #42 from ckeditor/t/ckeditor5-engine/1213

Internal: Changed API usage after engine/conversion refactoring (t/ckeditor5-engine/1213).
Piotr Jasiun 7 年 前
コミット
0c023ae059
1 ファイル変更1 行追加1 行削除
  1. 1 1
      packages/ckeditor5-clipboard/src/clipboard.js

+ 1 - 1
packages/ckeditor5-clipboard/src/clipboard.js

@@ -164,7 +164,7 @@ export default class Clipboard extends Plugin {
 				// Convert the pasted content to a model document fragment.
 				// Conversion is contextual, but in this case we need an "all allowed" context and for that
 				// we use the $clipboardHolder item.
-				const modelFragment = dataController.toModel( data.content, '$clipboardHolder' );
+				const modelFragment = dataController.toModel( data.content, [ '$clipboardHolder' ] );
 
 				if ( modelFragment.childCount == 0 ) {
 					return;