asciinema.org/app/models/embed_playback_options.rb

13 lines
221 B
Ruby
Raw Normal View History

class EmbedPlaybackOptions < PlaybackOptions
attribute :autoplay, Boolean, default: false
2016-05-01 17:15:04 +00:00
def as_json(*)
if !poster && t && t > 0
super.merge({ poster: "npt:#{t}" })
else
super
end
end
end