Method: Onebox::Engine::SlidesOnebox#to_html

Defined in:
lib/onebox/engine/slides_onebox.rb

#to_htmlObject



12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/onebox/engine/slides_onebox.rb', line 12

def to_html
  <<-HTML
    <iframe
      src="https://slides.com#{uri.path}/embed?style=light"
      width="576"
      height="420"
      scrolling="no"
      frameborder="0"
      webkitallowfullscreen
      mozallowfullscreen
      allowfullscreen
    ></iframe>
  HTML
end