Sha256: 8fb3326af89ab31f937489f21137900a3dcb4e4a24b0851b8a77de295a45463d
Contents?: true
Size: 705 Bytes
Versions: 9
Compression:
Stored size: 705 Bytes
Contents
module Onebox module Engine class KalturaOnebox include Engine include StandardEmbed always_https matches_regexp(/^https?:\/\/[a-z0-9]+\.kaltura\.com\/id\/[a-zA-Z0-9]+/) def preview_html og = get_opengraph <<~HTML <img src="#{og.image_secure_url}" width="#{og.video_width}" height="#{og.video_height}" > HTML end def to_html og = get_opengraph <<~HTML <iframe src="#{og.video_secure_url}" width="#{og.video_width}" height="#{og.video_height}" frameborder='0' allowfullscreen > </iframe> HTML end end end end
Version data entries
9 entries across 9 versions & 1 rubygems