From 60fef2655dacbdb771749144aedbea400ad4f323 Mon Sep 17 00:00:00 2001 From: Jacek Bogdanski Date: Wed, 6 May 2020 11:04:47 +0200 Subject: [PATCH 1/2] Docs update. --- plugins/colorbutton/plugin.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins/colorbutton/plugin.js b/plugins/colorbutton/plugin.js index 75a3b0051f1..07eee0ed115 100644 --- a/plugins/colorbutton/plugin.js +++ b/plugins/colorbutton/plugin.js @@ -488,6 +488,10 @@ CKEDITOR.config.colorButton_colors = '1ABC9C,2ECC71,3498DB,9B59B6,4E5F70,F1C40F, /** * Stores the style definition that applies the text foreground color. * + * **Note:** ACF is not updated automatically by a custom style definition. + * You may need to add additional ACF rules, so the applied HTML is not removed. + * Learn more how to configure ACF at {@glink guide/dev_advanced_content_filter Advanced Content Filter guide}. + * * Read more in the {@glink features/colorbutton documentation} * and see the {@glink examples/colorbutton example}. * @@ -511,6 +515,10 @@ CKEDITOR.config.colorButton_foreStyle = { /** * Stores the style definition that applies the text background color. * + * **Note:** ACF is not updated automatically by a custom style definition. + * You may need to add additional ACF rules, so the applied HTML is not removed. + * Learn more how to configure ACF at {@glink guide/dev_advanced_content_filter Advanced Content Filter guide}. + * * Read more in the {@glink features/colorbutton documentation} * and see the {@glink examples/colorbutton example}. * From 0faef74a41ea4f6e8447b8ec43286679e674b199 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Krzto=C5=84?= Date: Thu, 7 May 2020 13:41:44 +0200 Subject: [PATCH 2/2] Minor rewording. [skip ci] --- plugins/colorbutton/plugin.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/colorbutton/plugin.js b/plugins/colorbutton/plugin.js index 07eee0ed115..fa0a582c250 100644 --- a/plugins/colorbutton/plugin.js +++ b/plugins/colorbutton/plugin.js @@ -488,9 +488,9 @@ CKEDITOR.config.colorButton_colors = '1ABC9C,2ECC71,3498DB,9B59B6,4E5F70,F1C40F, /** * Stores the style definition that applies the text foreground color. * - * **Note:** ACF is not updated automatically by a custom style definition. - * You may need to add additional ACF rules, so the applied HTML is not removed. - * Learn more how to configure ACF at {@glink guide/dev_advanced_content_filter Advanced Content Filter guide}. + * **Note:** Advanced Content Filter (ACF) is not updated automatically by a custom style definition. + * You may need to add additional ACF rules, so the customized style element is not removed. + * Learn more how to configure ACF with {@glink guide/dev_advanced_content_filter Advanced Content Filter guide}. * * Read more in the {@glink features/colorbutton documentation} * and see the {@glink examples/colorbutton example}. @@ -515,9 +515,9 @@ CKEDITOR.config.colorButton_foreStyle = { /** * Stores the style definition that applies the text background color. * - * **Note:** ACF is not updated automatically by a custom style definition. - * You may need to add additional ACF rules, so the applied HTML is not removed. - * Learn more how to configure ACF at {@glink guide/dev_advanced_content_filter Advanced Content Filter guide}. + * **Note:** Advanced Content Filter (ACF) is not updated automatically by a custom style definition. + * You may need to add additional ACF rules, so the customized style element is not removed. + * Learn more how to configure ACF with {@glink guide/dev_advanced_content_filter Advanced Content Filter guide}. * * Read more in the {@glink features/colorbutton documentation} * and see the {@glink examples/colorbutton example}.