lib/onebox/engine/soundcloud_onebox.rb in onebox-1.8.80 vs lib/onebox/engine/soundcloud_onebox.rb in onebox-1.8.81

- old
+ new

@@ -1,31 +1,31 @@ -module Onebox - module Engine - class SoundCloudOnebox - include Engine - include StandardEmbed - - matches_regexp(/^https?:\/\/soundcloud\.com/) - always_https - - def to_html - oembed = get_oembed - oembed.html.gsub('visual=true', 'visual=false') - end - - def placeholder_html - oembed = get_oembed - return if Onebox::Helpers.blank?(oembed.thumbnail_url) - "<img src='#{oembed.thumbnail_url}' #{oembed.title_attr}>" - end - - protected - - def get_oembed_url - oembed_url = "https://soundcloud.com/oembed.json?url=#{url}" - oembed_url << "&maxheight=166" unless url["/sets/"] - oembed_url - end - - end - end -end +module Onebox + module Engine + class SoundCloudOnebox + include Engine + include StandardEmbed + + matches_regexp(/^https?:\/\/soundcloud\.com/) + always_https + + def to_html + oembed = get_oembed + oembed.html.gsub('visual=true', 'visual=false') + end + + def placeholder_html + oembed = get_oembed + return if Onebox::Helpers.blank?(oembed.thumbnail_url) + "<img src='#{oembed.thumbnail_url}' #{oembed.title_attr}>" + end + + protected + + def get_oembed_url + oembed_url = "https://soundcloud.com/oembed.json?url=#{url}" + oembed_url << "&maxheight=166" unless url["/sets/"] + oembed_url + end + + end + end +end