Class: Perron::HtmlProcessor::LazyLoadImages

Inherits:
HtmlProcessor::Base
  • Object
show all
Defined in:
lib/perron/html_processor/lazy_load_images.rb

Instance Method Summary collapse

Instance Method Details

#processObject



6
7
8
9
10
# File 'lib/perron/html_processor/lazy_load_images.rb', line 6

def process
  @html.css("img").each do |image|
    image["loading"] = "lazy"
  end
end