Using the latest version of https://github.com/orthes/medium-editor-insert-plugin , and image uploading is not working for me in IE9.
I filed a bug report on GitHub about this:
https://github.com/orthes/medium-editor-insert-plugin/issues/149
Re-posting here to see if anyone in a wider audience has a solution to this.
For debugging purposes, I've set up a test site at:
http://mediumeditortest.vector5.com.au/
You can select an image to upload inline, and it will get sent to the server; but it doesn't get saved, the server returns back a sample image (partridge.jpg) on success.
Works fine for me on latest Chrome / Firefox / Safari, but not on IE9 - after selecting an image to upload, it just shows an empty newline in the editor content.
From IE debugbar / dev-tools network panes, and also from my server logs, I see that no POST request (or other request) is being made.
I've verified that Images.prototype.uploadAdd
in medium-editor-insert-plugin is getting called (and data.submit
in jquery-fileupload is getting called too); but Images.prototype.uploadDone
never fires (not surprising, since there's no AJAX request happening).
Any ideas? Anything obvious that I've missed? Any more fixes that need to be made to medium-editor-insert-plugin, jquery-fileupload, or another related library? Running out of ideas here!