mirror of
https://github.com/humhub/humhub.git
synced 2025-01-17 22:28:51 +01:00
Merge branch 'develop' into fix/catchModuleConfigLoadError
This commit is contained in:
commit
565946f0da
@ -56,3 +56,4 @@ HumHub Changelog
|
||||
- Enh #3889: Prevent automatically resized site icons by manually added files (e.g. `/upload/icon/180x180.png`)
|
||||
- Enh #4458: Remove cacert.pem in order to avoid curl error
|
||||
- Fix #4473: Catch all Throwables when loading module configuration
|
||||
- Fix #4474: Loader not removed from event trigger
|
||||
|
@ -719,6 +719,7 @@ humhub.module('action', function(module, require, $) {
|
||||
|
||||
var that = this;
|
||||
event.finish = function() {
|
||||
_removeLoaderFromEventTarget(event);
|
||||
_removeLoaderFromEventTarget(event.originalEvent);
|
||||
that.unblock($trigger);
|
||||
};
|
||||
@ -734,6 +735,10 @@ humhub.module('action', function(module, require, $) {
|
||||
if(evt && evt.target) {
|
||||
loader.reset(evt.target);
|
||||
}
|
||||
|
||||
if(evt && evt.$trigger) {
|
||||
loader.reset(evt.$trigger);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user