2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-07-17 15:04:28 -06:00

Auto-format of the code

This commit is contained in:
Jeroen Akkerman 2019-07-18 12:00:32 +02:00
parent 6c66b54e2a
commit f1b6a42561

View File

@ -1961,6 +1961,7 @@ EasyMDE.prototype.openBrowseFileWindow = function(onSuccess, onError) {
self.uploadImages(event.target.files, onSuccess, onError);
imageInput.removeEventListener('change', onChange);
}
imageInput.addEventListener('change', onChange);
};
@ -1978,6 +1979,7 @@ EasyMDE.prototype.uploadImage = function(file, onSuccess, onError) {
onSuccess = onSuccess || function onSuccess(imageUrl) {
afterImageUploaded(self, imageUrl);
};
function onErrorSup(errorMessage) {
// show error on status bar and reset after 1000ms
self.updateStatusBar('upload-image', errorMessage);