Add error handling for MarvinJS

This commit is contained in:
aignatov-bio 2020-09-23 12:26:26 +02:00
parent feda5622d8
commit d719c26b6c
2 changed files with 10 additions and 1 deletions

View file

@ -168,6 +168,10 @@ var MarvinJsEditorApi = (function() {
$(marvinJsModal).modal('hide');
FilePreviewModal.init();
config.button.dataset.inProgress = false;
}).error((response) => {
if (response.status === 403) {
HelperModule.flashAlertMsg(I18n.t('general.no_permissions'), 'danger');
}
});
}
@ -196,6 +200,11 @@ var MarvinJsEditorApi = (function() {
}
$(marvinJsModal).modal('hide');
config.button.dataset.inProgress = false;
},
error: function(response) {
if (response.status === 403) {
HelperModule.flashAlertMsg(I18n.t('general.no_permissions'), 'danger');
}
}
});
}

View file

@ -47,7 +47,7 @@
.atwho-no-results {
color: $color-silver-chalice;
padding: 1.5em 7em;
padding: 1.5em 4em;
text-align: center;
.description {