Hi,

What would you think to add a fallback option to javascript_include_tag?

If I load dojo from Google CDN, I'd like a fallback. The easiest way to do 
so is by putting a script tage right after it:
<script>typeof(dojo) === "undefined" && document.write(unescape('%3Cscript 
src="assets/javascripts/dojo.js"%3E%3C/script%3E'));</script>

But the dojo library should go in your /vendors/assets/ not in your 
/public/assets. To get it served, I need to play with the 
config.assets.precompile if I understand well. Anyway, it all seem very 
hacky too me.

What would you think of being able to do something like that:

= javascript_include_tag 
"http://ajax.googleapis.com/ajax/libs/dojo/1.6.1/dojo/dojo.xd.js";, :test => 
'typeof(dojo) === "undefined"', :local => 'local/path/to/dojo'

That way rails take care of putting the extra <script> tag for us with the test 
and most importantly, can precompile the file and set the good path. 

What do you think?

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/rubyonrails-talk/-/R6SI2KVerccJ.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to