> hey all - i'm on hobo 1.3.0.RC, trying to convert my entire app to use sass and consolidate all my stylesheets in "public/stylesheets" and all related images in "public/images". I've been mostly successful except that the app is still looking for the spinner.gif in "public/hobothemes/images". so far I have not been able to track down where that reference is because I've updated all the urls in the stylesheets. Is the hobothemes location for this image hard-coded into hobo itself?
>
There's a reference in clean.css (generated by default in public/hobothemes/clean/stylesheets/clean.css):
#ajax-progress {
padding: 8px 20px 8px 40px;
border: 1px solid #444;
background: black url(../images/spinner.gif) no-repeat 10px 8px;
color: white;
}
There's also the spinner tag in rapid_core.dryml which you'd need to re-implement:
<def tag="spinner">
<img src="#{base_url}/hobothemes/#{Hobo.current_theme}/images/spinner.gif" class="hidden" merge-attrs/>
</def>
--Matt Jones