Fix: Bootstrap modal blocks richtext prompt focus

This commit is contained in:
buddh4 2019-02-27 03:15:39 +01:00
parent 2e88efbba9
commit 1ffdf39797
2 changed files with 6 additions and 0 deletions

View File

@ -8,6 +8,8 @@ HumHub Change Log
- Fix (CVE-2019-9093) and (CVE-2019-9094): Reflective XSS in file post upload and cfiles upload (thanks to **Rubal Jain** for testing and reporting)
- Enh: Added further upload file name validation
- Enh: Added `ContentContainerModuleManager::flushCache()`
- Fix: Bootstrap modal blocks richtext prompt focus
1.3.10 (February 22, 2019)
---------------------------

View File

@ -581,6 +581,10 @@ humhub.module('ui.modal', function (module, require, $) {
return true;
}
if($target.closest('.ProseMirror-prompt').length) {
return true;
}
// Allow stacking of modals
if ($target.closest('.modal.in').length) {
return true;