lib/onebox/engine/sketchfab_onebox.rb in onebox-1.8.80 vs lib/onebox/engine/sketchfab_onebox.rb in onebox-1.8.81
- old
+ new
@@ -1,31 +1,31 @@
-module Onebox
- module Engine
- class SketchFabOnebox
- include Engine
- include StandardEmbed
-
- matches_regexp(/^https?:\/\/sketchfab\.com\/(?:models\/|3d-models\/(?:[^\/\s]+-)?)([a-z0-9]{32})/)
- always_https
-
- def to_html
- og = get_opengraph
- src = og.video_url.gsub("autostart=1", "")
-
- <<-HTML
- <iframe src="#{src}"
- width="#{og.video_width}"
- height="#{og.video_height}"
- scrolling="no"
- frameborder="0"
- allowfullscreen>
- </iframe>
- HTML
- end
-
- def placeholder_html
- "<img src='#{get_opengraph.image}'>"
- end
-
- end
- end
-end
+module Onebox
+ module Engine
+ class SketchFabOnebox
+ include Engine
+ include StandardEmbed
+
+ matches_regexp(/^https?:\/\/sketchfab\.com\/(?:models\/|3d-models\/(?:[^\/\s]+-)?)([a-z0-9]{32})/)
+ always_https
+
+ def to_html
+ og = get_opengraph
+ src = og.video_url.gsub("autostart=1", "")
+
+ <<-HTML
+ <iframe src="#{src}"
+ width="#{og.video_width}"
+ height="#{og.video_height}"
+ scrolling="no"
+ frameborder="0"
+ allowfullscreen>
+ </iframe>
+ HTML
+ end
+
+ def placeholder_html
+ "<img src='#{get_opengraph.image}'>"
+ end
+
+ end
+ end
+end