From 0d35ad089db9ae6b1cd619be28ddda2b2314895b Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Wed, 23 Dec 2020 00:20:13 +0100 Subject: [PATCH] edit/page: disable pdf plugin for ckeditor Imposed in Full release since version 4.15.1, causing license warning despite being unused and unwanted. --- edit/page.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edit/page.js b/edit/page.js index 21ec6b4..c3ece3c 100644 --- a/edit/page.js +++ b/edit/page.js @@ -119,7 +119,7 @@ CKEDITOR.on('instanceCreated', function (event) { var config = editor.config; config.language = 'nl'; config.extraPlugins = 'inlinesave,placeholder,image2,uploadimage'; - config.removePlugins = 'image'; // conflicts with image2 + config.removePlugins = 'image,exportpdf'; // conflicts with imag2 config.allowedContent = { $1: { elements: CKEDITOR.dtd, -- 2.30.0