Use image_processing macros to resize images
This commit is contained in:
parent
bf851691bf
commit
cd5d54ce4e
4 changed files with 12 additions and 7 deletions
|
@ -8,7 +8,7 @@ module UserHelper
|
|||
if user.image_use_gravatar
|
||||
user_gravatar_tag(user, options)
|
||||
elsif user.avatar.attached?
|
||||
image_tag user_avatar_variant(user, :resize => "100x100>"), options
|
||||
image_tag user_avatar_variant(user, :resize_to_limit => [100, 100]), options
|
||||
else
|
||||
image_tag "avatar_large.png", options
|
||||
end
|
||||
|
@ -21,7 +21,7 @@ module UserHelper
|
|||
if user.image_use_gravatar
|
||||
user_gravatar_tag(user, options)
|
||||
elsif user.avatar.attached?
|
||||
image_tag user_avatar_variant(user, :resize => "50x50>"), options
|
||||
image_tag user_avatar_variant(user, :resize_to_limit => [50, 50]), options
|
||||
else
|
||||
image_tag "avatar_small.png", options
|
||||
end
|
||||
|
@ -34,7 +34,7 @@ module UserHelper
|
|||
if user.image_use_gravatar
|
||||
user_gravatar_tag(user, options)
|
||||
elsif user.avatar.attached?
|
||||
image_tag user_avatar_variant(user, :resize => "50x50>"), options
|
||||
image_tag user_avatar_variant(user, :resize_to_limit => [50, 50]), options
|
||||
else
|
||||
image_tag "avatar_small.png", options
|
||||
end
|
||||
|
@ -44,7 +44,7 @@ module UserHelper
|
|||
if user.image_use_gravatar
|
||||
user_gravatar_url(user, options)
|
||||
elsif user.avatar.attached?
|
||||
polymorphic_url(user_avatar_variant(user, :resize => "100x100>"), :host => Settings.server_url)
|
||||
polymorphic_url(user_avatar_variant(user, :resize_to_limit => [100, 100]), :host => Settings.server_url)
|
||||
else
|
||||
image_url("avatar_large.png")
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue