@ -362,7 +362,7 @@ function initImagePaste(target) {
const name = img . name . substr ( 0 , img . name . lastIndexOf ( '.' ) ) ;
const name = img . name . substr ( 0 , img . name . lastIndexOf ( '.' ) ) ;
insertAtCursor ( textarea , ` ![ ${ name } ]() ` ) ;
insertAtCursor ( textarea , ` ![ ${ name } ]() ` ) ;
const data = await uploadFile ( img , uploadUrl ) ;
const data = await uploadFile ( img , uploadUrl ) ;
replaceAndKeepCursor ( textarea , ` ![ ${ name } ]() ` , `  ` ) ;
replaceAndKeepCursor ( textarea , ` ![ ${ name } ]() ` , `  ` ) ;
const input = $ ( ` <input id=" ${ data . uuid } " name="files" type="hidden"> ` ) . val ( data . uuid ) ;
const input = $ ( ` <input id=" ${ data . uuid } " name="files" type="hidden"> ` ) . val ( data . uuid ) ;
dropzoneFiles . appendChild ( input [ 0 ] ) ;
dropzoneFiles . appendChild ( input [ 0 ] ) ;
}
}
@ -378,7 +378,7 @@ function initSimpleMDEImagePaste(simplemde, dropzone, files) {
const name = img . name . substr ( 0 , img . name . lastIndexOf ( '.' ) ) ;
const name = img . name . substr ( 0 , img . name . lastIndexOf ( '.' ) ) ;
const data = await uploadFile ( img , uploadUrl ) ;
const data = await uploadFile ( img , uploadUrl ) ;
const pos = simplemde . codemirror . getCursor ( ) ;
const pos = simplemde . codemirror . getCursor ( ) ;
simplemde . codemirror . replaceRange ( `  ` , pos ) ;
simplemde . codemirror . replaceRange ( `  ` , pos ) ;
const input = $ ( ` <input id=" ${ data . uuid } " name="files" type="hidden"> ` ) . val ( data . uuid ) ;
const input = $ ( ` <input id=" ${ data . uuid } " name="files" type="hidden"> ` ) . val ( data . uuid ) ;
files . append ( input ) ;
files . append ( input ) ;
}
}