lib/onebox/engine/bandcamp_onebox.rb in onebox-2.2.12 vs lib/onebox/engine/bandcamp_onebox.rb in onebox-2.2.13
- old
+ new
@@ -18,18 +18,18 @@
def to_html
og = get_opengraph
escaped_src = og.video_secure_url || og.video
<<-HTML
- <iframe src="#{escaped_src}"
- width="#{og.video_width}"
- height="#{og.video_height}"
- scrolling="no"
- frameborder="0"
- allowfullscreen>
- </iframe>
+ <iframe
+ src="#{escaped_src}"
+ width="#{og.video_width}"
+ height="#{og.video_height}"
+ scrolling="no"
+ frameborder="0"
+ allowfullscreen
+ ></iframe>
HTML
end
-
end
end
end