@swnat/ckeditor-custom-build
Version:
The development environment of CKEditor 5 – the best browser-based rich text editor.
26 lines (19 loc) • 854 B
JavaScript
/**
* @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 document */
import { getPerformanceData, createPerformanceEditor, renderPerformanceDataButtons } from '../../_utils/utils';
renderPerformanceDataButtons( document.querySelector( '#fixture-buttons' ) );
createPerformanceEditor( document.querySelector( '#editor' ) )
.then( editor => {
const fixtures = getPerformanceData();
const buttons = document.querySelectorAll( '#test-controls button' );
for ( const button of buttons ) {
button.addEventListener( 'click', function() {
const content = fixtures[ this.getAttribute( 'data-file-name' ) ];
editor.setData( content );
} );
button.disabled = false;
}
} );