Skip to content

Instantly share code, notes, and snippets.

View bhdzllr's full-sized avatar
👋
Hello

Bernhard bhdzllr

👋
Hello
View GitHub Profile
@bhdzllr
bhdzllr / config.js
Created May 23, 2019 05:29
CKEditor 4 table header scope Quickfix
CKEDITOR.editorConfig = function ( config ) {
config.extraPlugins = 'tableScopeFix';
};
CKEDITOR.plugins.add('tableScopeFix', {
init: function (editor) {
CKEDITOR.on( 'dialogDefinition', function (e) {
var dialogName = e.data.name;
var dialogDefinition = e.data.definition;