N°5298 - Upgrade CKEditor to version 5

- fix portal issue when choosing a text color, text area value is replaced by hexadecimal color text input
This commit is contained in:
Benjamin Dalsass
2024-06-07 08:17:38 +02:00
parent d3b39048d8
commit 8d2adfbbd2

View File

@@ -75,9 +75,9 @@ $(function()
getCurrentValue: function()
{
var value = null;
this.element.find(':input:not(:button)').each(function(iIndex, oElem){
if($(oElem).is(':hidden:not(.ck-hidden)') || $(oElem).is(':text') || $(oElem).is(':password') || $(oElem).is('textarea'))
if($(oElem).is(':hidden:not(.ck-hidden,.ck-input-text)') || $(oElem).is(':text:not(.ck-input-text)') || $(oElem).is(':password') || $(oElem).is('textarea'))
{
value = $(oElem).val();
}