Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.30 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. ActionView::Helpers::AssetTagHelper.module_eval do
  2.  
  3.   def stylesheet_tag(source, options)
  4.     tag("link", {
  5.       "rel" => "stylesheet",
  6.       "type" => Mime::CSS,
  7.       "media" => "screen",
  8.       "href" => html_escape(path_to_stylesheet(source))
  9.       }.merge(options), true, false)
  10.   end  
  11. end