Dan LeGrand
Dan LeGrand
Also confirming that this works: ``` $(document).on "page:receive", -> tinymce.remove() $(document).on "ready page:load", -> tinymce.init({ selector: "selector" }) ``` I'm using TinyMCE via the CDN and not the `tinymce-rails` gem,...
@ohyoungjooung2 You can put that JavaScript code in any JS file that is included in your Rails application. By default, Rails has an `app/assets/javascripts/application.js` file which is a _manifest file_,...
I can also confirm that @jwcooper [solution](https://github.com/rails/sprockets/issues/474#issuecomment-374958102) of updating the `assets/config/manifest.js` file to `link application.css` solved my error: `SassC::SyntaxError: Error: Undefined variable: "$variable_name"`. I use a separate file to create...