lib/onebox/engine/wistia_onebox.rb in onebox-1.8.80 vs lib/onebox/engine/wistia_onebox.rb in onebox-1.8.81
- old
+ new
@@ -1,27 +1,27 @@
-module Onebox
- module Engine
- class WistiaOnebox
- include Engine
- include StandardEmbed
-
- matches_regexp(/https?:\/\/(.+)?(wistia.com|wi.st)\/(medias|embed)\/.*/)
- always_https
-
- def to_html
- get_oembed.html
- end
-
- def placeholder_html
- oembed = get_oembed
- return if Onebox::Helpers.blank?(oembed.thumbnail_url)
- "<img src='#{oembed.thumbnail_url}' #{oembed.title_attr}>"
- end
-
- private
-
- def get_oembed_url
- "https://fast.wistia.com/oembed?embedType=iframe&url=#{url}"
- end
- end
- end
-end
+module Onebox
+ module Engine
+ class WistiaOnebox
+ include Engine
+ include StandardEmbed
+
+ matches_regexp(/https?:\/\/(.+)?(wistia.com|wi.st)\/(medias|embed)\/.*/)
+ always_https
+
+ def to_html
+ get_oembed.html
+ end
+
+ def placeholder_html
+ oembed = get_oembed
+ return if Onebox::Helpers.blank?(oembed.thumbnail_url)
+ "<img src='#{oembed.thumbnail_url}' #{oembed.title_attr}>"
+ end
+
+ private
+
+ def get_oembed_url
+ "https://fast.wistia.com/oembed?embedType=iframe&url=#{url}"
+ end
+ end
+ end
+end