/ Published in: Ruby
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
Firefox doesn't display a popup for the alt attribute for images. While this is according to spec, it's slightly annoying to put the same text in both the alt and the title. Put the following in your ApplicationHelper to copy the alt to the title for every image. Please don't tell me how wrong this is. I don't care. module ApplicationHelper def image_tag(location, options) options[:title] = options[:alt] if options[:alt] super(location, options) end end