8
0

framededitableui.js 411 B

12345678910111213141516
  1. /**
  2. * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. 'use strict';
  6. import EditableUI from '/ckeditor5/ui/editableui/editableui.js';
  7. export default class FramedEditableUI extends EditableUI {
  8. constructor( editor, editableModel ) {
  9. super( editor, editableModel );
  10. this.viewModel.bind( 'width', 'height' ).to( editor.ui );
  11. }
  12. }