Nate Mielnik

Results 38 comments of Nate Mielnik

@sPaCeMoNk3yIam so this appears to be a chrome-only issue as I wasn't able to get this to reproduce in firefox, safari, or IE11. This is odd behavior indeed, if you...

This fix for this could just be as simple as look for ` ` elements within the whole editor, or within the currently edited element, and replace them with spaces.

@annayafi looks like #1244 is providing one way of accomplishing this, and #1281 is asking for another potential way of implementing this. Would your issue be resolved by either of...

I wonder if there's a way to build off of what @noirbizarre did in #1244 s.t. we can choose different types of separators between groups of buttons. By default, each...

I've created a branch [toolbar-button-groups](https://github.com/yabwe/medium-editor/tree/toolbar-button-groups) which contains the changes that @noirbizarre proposed in #1244 . This should allow others to branch off of that branch and try to incorporate some...

@grumpi yeah that definitely makes sense. I've unfortunately allowed this project to go very stale, but the goal here was to use `contenteditable` only for the 3 cases you listed...

@okiuim that's an interesting way of going about this...I'm not sure if some of the native browser methods actually call `document.execCommand` (ie CTRL + B for paste, or clicking 'Undo'...

@grumpi I wanted to help clarify what I was hoping the workflow would be inside of this project: 1. Use `contenteditable` as the interface the user interact with. This gives...