ckeditor5-youtube-embed
Version:
Embed Youtube video's in CKeditor 5
15 lines (12 loc) • 390 B
JavaScript
/* Dependencies */
import YoutubeEditing from './Youtubeediting';
import YoutubeUI from './Youtubeui';
/* Plugin API */
import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
/* Create the Youtube plugin */
export default class Youtube extends Plugin {
static get requires() {
/* This plugin requires the editing and UI extention */
return [ YoutubeEditing, YoutubeUI ];
}
}