Pavel Linkesch
Pavel Linkesch
What solution do you suggest?
Reasonable proposal. Feel free to implement this if you find some time.
I'm not sure I follow. Can you repro your problem on https://jsfiddle.net or similar service?
Thanks for your fixes so far. Since cross browser file upload might be tricky, I've decided to use [blueimp's jQuery File Upload Plugin](https://github.com/blueimp/jQuery-File-Upload), so we can blame them not me...
That's the built-in behavior. I don't think there's an option right now to disable this. Feel free to implement it and create a PR
No, right now it's not possible to separate them. If you need this, feel free to create a pull request.
Right now it can't be done easily. You have to change [Core.positionButtons()](https://github.com/orthes/medium-editor-insert-plugin/blob/master/src/js/core.js#L455) function where the position is calculated. Also you need to update [_core.scss](https://github.com/orthes/medium-editor-insert-plugin/blob/master/src/sass/_core.scss#L39) file to display "+" button on...
@jbellsey I started working on simplifying custom modifications. What are your requirements? I have this API in mind: ``` javascript // Initializition stays the same $('.editable').mediumInsert({ editor: editor }); //...
Looking at code, I don't think we're showing upload errors right now. Feel free to add it here: https://github.com/orthes/medium-editor-insert-plugin/blob/master/src/js/images.js#L200
You have a lot of additional code in your codepen example. Can you verify that even if you strip everything and leave only MediumEditor + plugin, the bug is still...