Oscar Godson

Results 189 comments of Oscar Godson

We dont really do anything with images at all. Just create and img tag with the given as a source. Dont add widths or heights or anything. Could you inspect...

Could your server be sanitizing it and removing them?

Another go at playing around with a hello world one ``` js (function (ee) { ee.extend({ helloWorld: function(options) { ee.on('load', function() { alert('Hello World'); }); }; }); })(EpicEditor); ``` I...

@dadambickford I think he's talking more about dragging an actual file into the browser window, dropping it, and the content appearing in the editor not moving elements around the page.

@ryel indeed, but it should be an extension. Trying to keep the core editor to just text editing. But, extensions should be super easy to install like just including a...

Good idea :) I've added it to the list.

@librarian This will be tough and why it's a v2 thing. The tough part is moving the cursor around. It's a contenteditable so it'll be like implementing any other WYSIWYG...

@mahemoff @hongymagic was really close then left on vacation. He actually had the selection AND a prototype with buttons. The problem was the scope of the pull request was too...

@corydeppen Unfortunately, I havent had time to keep up with this project lately. This was supposed to be for 2.0 but there's still a lot to do for 1.0 :(...

The problem with tabbing out is then in the future when we add support for putting tabs into the editor(for block quotes, code, etc) you will be overriding this feature....