N°7745 - Portal: Fix js error in firefox when leaving object modal form with ckeditor form

This commit is contained in:
Anne-Cath
2024-08-12 14:36:32 +02:00
parent c1eb605195
commit 244ae33ad6

View File

@@ -31,7 +31,7 @@ $.fn.modal.Constructor.prototype.enforceFocus = function () {
var $parent = $(e.target.parentNode);
if ($modalElement[0] !== e.target && !$modalElement.has(e.target).length &&
!$parent.hasClass('ck-input')) {
e.target.focus()
$(e.target.activeElement).focus();
}
})
};