Sha256: cb5c53e146344bc5976d370669c3a933f6fefc88f3cf69ec7b8a1ec6935553ea
Contents?: true
Size: 736 Bytes
Versions: 49
Compression:
Stored size: 736 Bytes
Contents
# frozen_string_literal: true 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
49 entries across 49 versions & 1 rubygems