| 123456789101112131415161718192021222324252627282930313233343536373839 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /**
- * @module link/linkimageui
- */
- import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
- import Image from '@ckeditor/ckeditor5-image/src/image';
- import LinkUI from './linkui';
- import LinkEditing from './linkediting';
- /**
- * The link image UI plugin.
- *
- * TODO: Docs.
- *
- * @extends module:core/plugin~Plugin
- */
- export default class LinkImageUI extends Plugin {
- /**
- * @inheritDoc
- */
- static get requires() {
- return [ Image, LinkEditing, LinkUI ];
- }
- /**
- * @inheritDoc
- */
- static get pluginName() {
- return 'LinkImageUI';
- }
- init() {
- }
- }
|