Browse Source
Merge pull request #1502 from tinymce/hotfix/DOC-256
Fix image handler example
pull/1504/head
Tyler Kelly
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
general-configuration-guide/upload-images.md
|
|
@ -112,7 +112,7 @@ tinymce.init({ |
|
|
|
success(json.location); |
|
|
|
}; |
|
|
|
formData = new FormData(); |
|
|
|
formData.append('file', blobInfo.blob(), fileName(blobInfo)); |
|
|
|
formData.append('file', blobInfo.blob(), blobInfo.filename()); |
|
|
|
xhr.send(formData); |
|
|
|
} |
|
|
|
}); |
|
|
|