Sam Pohlenz

Results 132 comments of Sam Pohlenz

Propshaft has been added in #315. If you are able to test it out and share your experience, that would be great.

The jQuery integration was removed from the TinyMCE core distribution starting with TinyMCE 6. It has been moved to https://github.com/tinymce/tinymce-jquery with some quick start instructions at https://www.tiny.cloud/docs/tinymce/6/jquery-pm/. I'd be open...

Try removing the space between `function` and the parameters: ```yaml setup: 'function(ed) { ... }' ```

> yeah. that helps. interesting. Almost all programming examples come with a space (e.g. https://www.tiny.cloud/docs/advanced/creating-a-custom-button/ and js is none of my common programming languages.) My personal coding preference is for...

Are you using turbolinks? This sounds like it could be related to that. I'll need to look into what is required for full compatibility with turbolinks.

Thanks @echarp. I will add some info to the readme, or if possible, see if I can make it work seamlessly.

Are you using the `tinymce` helper to initialize TinyMCE or your own code? See https://github.com/spohlenz/tinymce-rails/blob/master/sandbox/app/views/editor/helpers.html.erb for an example. No extra configuration should be required (and your example works for me).

Are you entering the full URL (include http://)? Can you use your browser's inspection tools to see what the src of the image tag is being set to?

Do you have `// require_tree .` in your application.js? If so, my guess would be that it is what is causing the problem. You may need to require your other...

I've been working on an alternate asset compilation method in the [compile-assets](https://github.com/spohlenz/tinymce-rails/tree/compile-assets) branch which works much more closely with the Sprockets compilation process. In Rails 3.x this was painfully slow...