| 12345678910111213141516171819202122232425 |
- /**
- * @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;
- }
- } );
|