lib/onebox/engine/slides_onebox.rb in onebox-2.2.12 vs lib/onebox/engine/slides_onebox.rb in onebox-2.2.13

- old
+ new

@@ -9,25 +9,25 @@ matches_regexp(/^https?:\/\/slides\.com\/[\p{Alnum}_\-]+\/[\p{Alnum}_\-]+$/) requires_iframe_origins "https://slides.com" def to_html <<-HTML - <iframe src="https://slides.com#{uri.path}/embed?style=light" - width="576" - height="420" - scrolling="no" - frameborder="0" - webkitallowfullscreen - mozallowfullscreen - allowfullscreen> - </iframe> + <iframe + src="https://slides.com#{uri.path}/embed?style=light" + width="576" + height="420" + scrolling="no" + frameborder="0" + webkitallowfullscreen + mozallowfullscreen + allowfullscreen + ></iframe> HTML end def placeholder_html escaped_src = ::Onebox::Helpers.normalize_url_for_output(raw[:image]) "<img src='#{escaped_src}'>" end - end end end