我在我的应用程序中使用 tinymce。 https://github.com/sophlenz/tinymce-rails
我需要它application.js
//= require tinymce-jquery
我最近将我的资产移到了几个主机名之外。
config.serve_static_assets = false
config.assets.compile = true
config.assets.digest = true
config.action_controller.asset_host = "http://assets%d.somehost.com"
config.assets.compress = false
config.assets.debug = false
之后我的tinmce因错误而崩溃Domains, protocols and ports must match.
我想我必须在文件顶部覆盖tiny_mce_popup.js
:
document.domain = 'somehost.com';
但是,既然这个文件在 gem 中,那么最好的方法是什么?