MDL-72966 File upload: Uncaught Error from JS when uploading the file

This commit is contained in:
Thong Bui
2021-11-15 07:28:50 +07:00
parent d135a1200a
commit ec160a91cb
+4 -2
View File
@@ -863,7 +863,8 @@ M.form_dndupload.init = function(Y, options) {
*/
notifyUploadCompleted: function() {
require(['core_form/events'], function(FormEvent) {
FormEvent.notifyUploadCompleted(this.filemanagerhelper.filemanager.get('id'));
const elementId = this.filemanagerhelper ? this.filemanagerhelper.filemanager.get('id') : this.options.containerid;
FormEvent.triggerUploadCompleted(elementId);
}.bind(this));
},
@@ -872,7 +873,8 @@ M.form_dndupload.init = function(Y, options) {
*/
notifyUploadStarted: function() {
require(['core_form/events'], function(FormEvent) {
FormEvent.notifyUploadStarted(this.filemanagerhelper.filemanager.get('id'));
const elementId = this.filemanagerhelper ? this.filemanagerhelper.filemanager.get('id') : this.options.containerid;
FormEvent.triggerUploadStarted(elementId);
}.bind(this));
},