Browse Source

Fix image handler example

Apply fix provided by @JimRaleyTurbine on #1443
pull/1502/head
Tyler Kelly 5 years ago
committed by GitHub
parent
commit
ab685212c9
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