如何处理多个资产主机和tinymce-rails?

时间:2013-01-08 11:04:47

标签: jquery ruby-on-rails tinymce asset-pipeline

我在我的应用中使用了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中,那么最好的方法是什么?

0 个答案:

没有答案