Skip to content

Commit

Permalink
Merge pull request #30383 from y-yagi/followup_of_30213
Browse files Browse the repository at this point in the history
Remove `alt` text from `image_tag` example [ci skip]
  • Loading branch information
eileencodes committed Aug 24, 2017
2 parents 05d062a + 826fe1f commit 0dccf39
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions actionview/lib/action_view/helpers/asset_tag_helper.rb
Expand Up @@ -239,11 +239,11 @@ def favicon_link_tag(source = "favicon.ico", options = {})
# Active Storage (images that are uploaded by the users of your app):
#
# image_tag(user.avatar)
# # => <img src="/rails/active_storage/blobs/.../tiger.jpg" alt="Tiger" />
# # => <img src="/rails/active_storage/blobs/.../tiger.jpg" />
# image_tag(user.avatar.variant(resize: "100x100"))
# # => <img src="/rails/active_storage/variants/.../tiger.jpg" alt="Tiger" />
# # => <img src="/rails/active_storage/variants/.../tiger.jpg" />
# image_tag(user.avatar.variant(resize: "100x100"), size: '100')
# # => <img width="100" height="100" src="/rails/active_storage/variants/.../tiger.jpg" alt="Tiger" />
# # => <img width="100" height="100" src="/rails/active_storage/variants/.../tiger.jpg" />
def image_tag(source, options = {})
options = options.symbolize_keys
check_for_image_tag_errors(options)
Expand Down
8 changes: 4 additions & 4 deletions actionview/lib/action_view/helpers/asset_url_helper.rb
Expand Up @@ -29,7 +29,7 @@ module Helpers
# Helpers take that into account:
#
# image_tag("rails.png")
# # => <img alt="Rails" src="http://assets.example.com/assets/rails.png" />
# # => <img src="http://assets.example.com/assets/rails.png" />
# stylesheet_link_tag("application")
# # => <link href="http://assets.example.com/assets/application.css" media="screen" rel="stylesheet" />
#
Expand All @@ -42,7 +42,7 @@ module Helpers
# "assets0.example.com", ..., "assets3.example.com".
#
# image_tag("rails.png")
# # => <img alt="Rails" src="http://assets0.example.com/assets/rails.png" />
# # => <img src="http://assets0.example.com/assets/rails.png" />
# stylesheet_link_tag("application")
# # => <link href="http://assets2.example.com/assets/application.css" media="screen" rel="stylesheet" />
#
Expand All @@ -68,7 +68,7 @@ module Helpers
# "http://assets#{Digest::MD5.hexdigest(source).to_i(16) % 2 + 1}.example.com"
# }
# image_tag("rails.png")
# # => <img alt="Rails" src="http://assets1.example.com/assets/rails.png" />
# # => <img src="http://assets1.example.com/assets/rails.png" />
# stylesheet_link_tag("application")
# # => <link href="http://assets2.example.com/assets/application.css" media="screen" rel="stylesheet" />
#
Expand All @@ -87,7 +87,7 @@ module Helpers
# end
# }
# image_tag("rails.png")
# # => <img alt="Rails" src="http://assets.example.com/assets/rails.png" />
# # => <img src="http://assets.example.com/assets/rails.png" />
# stylesheet_link_tag("application")
# # => <link href="http://stylesheets.example.com/assets/application.css" media="screen" rel="stylesheet" />
#
Expand Down

0 comments on commit 0dccf39

Please sign in to comment.