asciinema.org/app/models/embed_playback_options.rb
2016-05-01 17:15:04 +00:00

13 lines
221 B
Ruby

class EmbedPlaybackOptions < PlaybackOptions
attribute :autoplay, Boolean, default: false
def as_json(*)
if !poster && t && t > 0
super.merge({ poster: "npt:#{t}" })
else
super
end
end
end