Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 683 Bytes

File metadata and controls

24 lines (18 loc) · 683 Bytes

CKEditor responsible table

CKEditor responsible table plugin.

See the working sample here

Usage

<!-- Plugin required CSS file.-->
<link rel="stylesheet" href="../dist/styles/plugin.css">
<!-- Plugin optional CSS file. Provides a basic styling. -->
<link rel="stylesheet" href="../dist/styles/basic-theme.css">

Add the plugin at your config.js

CKEDITOR.plugins.addExternal('ckeditor_responsive_table', '/ckeditor_responsive_table/dist/plugin.js');
config.extraPlugins = ['ckeditor_responsive_table'];

config.toolbar = [
    {name: 'basicstyles', items: ['ResponsiveTable']}
  ];