module StylesheetsForAll::ActionViewExtensions
Public Instance Methods
stylesheet_link_tag(*sources)
click to toggle source
Calls superclass method
# File lib/stylesheets_for_all.rb, line 7 def stylesheet_link_tag(*sources) options = sources.last.is_a?(Hash) ? sources.pop.stringify_keys : { } sources << {'media' => 'all'}.merge(options) super end