CafeHey
CafeHey

Reputation: 5800

Override an asset host in rails, via the helper methods?

I was wondering if there was a way to override the asset host of an image.

For example lets say I have the following asset host and image tag

config.asset_host = "www.xxx.com
image_tag "blerg.gif"

This would out put and image tag with the scr:

www.xxx.com/blerg.gif

Is there a way to change the asset host inline for example:

image_tag "blerg.gif", :host => 'www.yyy.com

Which would change the asset host of the image.

Cheers.

Upvotes: 1

Views: 1309

Answers (1)

Vasiliy Ermolovich
Vasiliy Ermolovich

Reputation: 24617

You can pass your full url: image_tag "http://www.yyy.com/blerg.gif"

Upvotes: 3

Related Questions