framededitableuiview.js 456 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 EditableUIView from '/ckeditor5/ui/editableui/editableuiview.js';
  7. export default class FramedEditableUIView extends EditableUIView {
  8. constructor( model, locale, editableElement ) {
  9. super( model, locale, editableElement );
  10. this.template.attributes.class.push( 'ck-editor__editable_framed' );
  11. }
  12. }