This simple patch fixes incorrect path to the assets if you have something configured asset_host variable, for example:
config.action_controller.asset_host = static.myapp.com
Without this fix only /assets (or other config.assets.prefix) will be added to the base url. In example myapp.com/assets instead of static.myapp.com/assets.
@ksarna I will incorporate the functionality but will move the asset host/prefix/dir concatenation into a method on TinyMCE. Hopefully I can fix #39 at the same time.
This simple patch fixes incorrect path to the assets if you have something configured asset_host variable, for example: config.action_controller.asset_host = static.myapp.com
Without this fix only /assets (or other config.assets.prefix) will be added to the base url. In example myapp.com/assets instead of static.myapp.com/assets.