aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-04-07 13:19:55 -0700
committerXavier Noria <fxn@hashref.com>2010-04-07 13:20:52 -0700
commitec8610cfdc32d0fe816fb22405e00ef1b6c90d73 (patch)
treec4d194ba60f0e6e6e038dd13daa66c9d77c1f1c9 /actionpack/lib
parenteed89e65b6320a59115da0c5ef004c727e0f9cbf (diff)
downloadrails-ec8610cfdc32d0fe816fb22405e00ef1b6c90d73.tar.gz
rails-ec8610cfdc32d0fe816fb22405e00ef1b6c90d73.tar.bz2
rails-ec8610cfdc32d0fe816fb22405e00ef1b6c90d73.zip
adds a default source to #apple_touch_icon_link_tag
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_view/helpers/asset_tag_helper.rb18
1 files changed, 12 insertions, 6 deletions
diff --git a/actionpack/lib/action_view/helpers/asset_tag_helper.rb b/actionpack/lib/action_view/helpers/asset_tag_helper.rb
index 1ca95b7dd1..47abf1e41c 100644
--- a/actionpack/lib/action_view/helpers/asset_tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/asset_tag_helper.rb
@@ -518,24 +518,30 @@ module ActionView
# <link href="/images/favicon.ico?4649789979" rel="shortcut icon" type="image/vnd.microsoft.icon" />
#
# The helper accepts an additional options hash where you can override "rel" and "type".
- def favicon_link_tag(source=nil, options={})
+ def favicon_link_tag(source='/favicon.ico', options={})
tag('link', {
:rel => 'shortcut icon',
:type => 'image/vnd.microsoft.icon',
- :href => image_path(source || '/favicon.ico')
+ :href => image_path(source)
}.merge(options.symbolize_keys))
end
# Returns a link tag for an icon targetted at iPod Touch, iPhone, and iPad.
#
- # <%= apple_touch_icon_link_tag 'my_site.png' %>
+ # <%= apple_touch_icon_link_tag %>
#
# generates
#
- # <link href="/images/my_site.png?4233872383" rel="apple-touch-icon" />
+ # <link href="/apple-touch-icon.png?4233872383" rel="apple-touch-icon" />
+ #
+ # You can specify a different icon file:
+ #
+ # <%= apple_touch_icon_link_tag "my_site.png" %>
#
- # The source argument is passed to +image_path+ as is.
- def apple_touch_icon_link_tag(source)
+ # That's passed to +image_path+ as is, so the example above would render
+ #
+ # <link href="/images/my_site.png?4233872383" rel="apple-touch-icon" />
+ def apple_touch_icon_link_tag(source='/apple-touch-icon.png')
tag('link', :rel => 'apple-touch-icon', :href => image_path(source))
end