Skip to content

Simple plugin to ckeditor to have the fullscreen

Notifications You must be signed in to change notification settings

labservant/ckeditor5-fullscreen

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Fullscreen for CKEditor 5 classic editor build (Inline editor not (yet) supported; monitor original repo)

npm i -D @ckeditor/ckeditor5-core
npm i -D @ckeditor/ckeditor5-ui

Include in your ckeditor.js

import FullScreen from './FullScreen';

Include in the plugin List

ClassicEditor.builtinPlugins = [
	....
	FullScreen,
];

And include it in your toolbar

ClassicEditor.defaultConfig = {
	toolbar: {
		items: [
			.....,
			'fullScreen'
		]
	},

About

Simple plugin to ckeditor to have the fullscreen

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 85.1%
  • CSS 14.9%