| 1234567891011121314151617181920212223242526272829303132 |
- /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /* globals ClassicEditor, console, window, document */
- ClassicEditor
- .create( document.querySelector( '#snippet-custom-font-size-numeric-options' ), {
- toolbar: {
- items: [
- 'headings', 'bulletedList', 'numberedList', 'fontSize', 'undo', 'redo'
- ],
- viewportTopOffset: 60
- },
- fontSize: {
- options: [
- 9,
- 11,
- 13,
- 'normal',
- 17,
- 19,
- 21
- ]
- }
- } )
- .then( editor => {
- window.editor = editor;
- } )
- .catch( err => {
- console.error( err.stack );
- } );
|