retina.js looks for an image with the same filename but with @2x before the file extension
The rails asset pipeline adds a cache busting timestamp to the end of the filename
This means retina.js is looking for filename-cachebuster@2x.png
but the file is at filename@2x-cachebuster.png
Anyone have a work around for this?
Who's wrong on this ie, should retina.js be trained to look for files at filename@2x-cachebuster.png
if the original filename matches a pattern that indicates it has a cache busting hash, or should the rails pipeline be changed to ensure the @2x is always just before the file extension?