I\'ve been using turbolinks along this year but lately I\'m getting this annoying bug. Images uploaded via carrierwave are loaded in the site with absolute URL\'s in the first r
I just figured out that if you use absolute url's for background images the bug dessapears. So this is how I call carrierwave images in my helper:
img = ProductImage.find(id) "#{request.protocol}#{request.host_with_port}#{img.photo}"
photo is the attribute used with carrierwave uploader.