imagecaptioning.js 504 B

123456789101112131415161718192021
  1. /**
  2. * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. /**
  6. * @module image/imagecaptioning/imagecaptioning
  7. */
  8. import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
  9. import ImageCaptioningEngine from './imagecaptioningengine';
  10. import '../../theme/imagecaptioning/theme.scss';
  11. export default class ImageCaptioning extends Plugin {
  12. /**
  13. * @inheritDoc
  14. */
  15. static get requires() {
  16. return [ ImageCaptioningEngine ];
  17. }
  18. }