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
parent
commit
35e847a798
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      general-configuration-guide/upload-images.md

2
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);
}
});

Loading…
Cancel
Save