2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-07-24 10:24:29 -06:00

Increase timeout of error message to 10s

This commit is contained in:
Jeroen Akkerman 2019-07-18 14:29:54 +02:00
parent cd7c9b8d4d
commit 0558fb0d68

View File

@ -1981,11 +1981,13 @@ EasyMDE.prototype.uploadImage = function (file, onSuccess, onError) {
};
function onErrorSup(errorMessage) {
// show error on status bar and reset after 1000ms
// show error on status bar and reset after 10000ms
self.updateStatusBar('upload-image', errorMessage);
setTimeout(function () {
self.updateStatusBar('upload-image', self.options.imageTexts.sbInit);
}, 1000);
}, 10000);
// run custom error handler
if (onError && typeof onError === 'function') {
onError(errorMessage);