mirror of
https://github.com/humhub/humhub.git
synced 2025-04-20 15:11:52 +02:00
Fix: Bootstrap modal blocks richtext prompt focus
This commit is contained in:
parent
2e88efbba9
commit
1ffdf39797
@ -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)
|
||||
---------------------------
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user