spohlenz / tinymce-rails

Integration of TinyMCE with the Rails asset pipeline
Other
814 stars 257 forks source link

TinyMCE with active admin doesnt load in production #150

Open jhorsch opened 10 years ago

jhorsch commented 10 years ago

HI,

I have everything working in development, but I just pushed to production and the tinyMCE toolbar isn't loading. I am getting the following error.

GET https://www.luminoto.com/javascripts/active_admin_custom.js 404 (Not Found)

I am using your rails gem.


**I feel like it isn't reading the correct path in the active admin initializer.

config.register_javascript 'active_admin_custom.js'


active_admin_custom.js

//= require active_admin/base //= require tinymce

$(document).ready(function() {

tinyMCE.init({ mode : "textareas", editor_selector : "tinymce", fontsize_formats: "14pt 16pt 18pt 20pt 24pt 30pt 36pt", toolbar: "undo redo | styleselect | bold italic | link image | alignleft aligncenter alignright | bullist | numlist", browser_spellcheck : true, plugins: "link,wordcount,advlist", link_title: false, autosave_interval: "20s", });

});

sirtawast commented 5 years ago

I got it working by following these instructions.

Don't forget to rake asset:precompile.