summaryrefslogtreecommitdiff
path: root/app/helpers/lazy_image_tag_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/lazy_image_tag_helper.rb')
-rw-r--r--app/helpers/lazy_image_tag_helper.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/helpers/lazy_image_tag_helper.rb b/app/helpers/lazy_image_tag_helper.rb
index 60df16b3373..4def806f1c0 100644
--- a/app/helpers/lazy_image_tag_helper.rb
+++ b/app/helpers/lazy_image_tag_helper.rb
@@ -9,10 +9,10 @@ module LazyImageTagHelper
unless options.delete(:lazy) == false
options[:data] ||= {}
- unless options.delete(:use_original_source)
- options[:data][:src] = path_to_image(source)
- else
+ if options.delete(:use_original_source)
options[:data][:src] = source
+ else
+ options[:data][:src] = path_to_image(source)
end
options[:class] ||= ""
options[:class] << " lazy"