| 1234567891011121314151617181920212223242526272829303132333435363738 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /* globals console, window, document */
- import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
- import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
- import { stringify as stringifyView } from '@ckeditor/ckeditor5-engine/src/dev-utils/view';
- ClassicEditor
- .create( document.querySelector( '#editor' ), {
- plugins: [ ArticlePluginSet ],
- toolbar: [ 'heading', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'undo', 'redo' ]
- } )
- .then( editor => {
- window.editor = editor;
- const clipboard = editor.plugins.get( 'Clipboard' );
- editor.editing.view.document.on( 'paste', ( evt, data ) => {
- console.clear();
- console.log( '----- paste -----' );
- console.log( data );
- console.log( 'text/html\n', data.dataTransfer.getData( 'text/html' ) );
- console.log( 'text/plain\n', data.dataTransfer.getData( 'text/plain' ) );
- } );
- clipboard.on( 'inputTransformation', ( evt, data ) => {
- console.log( '----- clipboardInput -----' );
- console.log( 'stringify( data.dataTransfer )\n', stringifyView( data.content ) );
- } );
- } )
- .catch( err => {
- console.error( err.stack );
- } );
|