我在我的应用中使用了tinymce。 https://github.com/spohlenz/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
之后,我的小孩突然错误Domains, protocols and ports must match.
我想我必须覆盖文件tiny_mce_popup.js
的顶部:
document.domain = 'somehost.com';
但是,如果这个文件在gem中,那么最好的方法是什么?