2014-01-18 13:28:01 +00:00
|
|
|
.player class="#{options.size}-font"
|
2013-09-20 21:21:25 +00:00
|
|
|
|
|
|
|
javascript:
|
|
|
|
$(function() {
|
2014-01-18 13:28:01 +00:00
|
|
|
var playerClass = #{options.player_class};
|
|
|
|
var containerWidth = #{options.max_width || 'null'};
|
2013-11-18 11:04:57 +00:00
|
|
|
|
2013-09-20 21:21:25 +00:00
|
|
|
window.player = new playerClass({
|
2014-01-18 13:28:01 +00:00
|
|
|
el: $('.player'),
|
|
|
|
speed: #{options.speed},
|
|
|
|
benchmark: #{options.benchmark},
|
|
|
|
model: new Asciinema.Asciicast(#{asciicast.html_safe}),
|
2013-11-18 11:04:57 +00:00
|
|
|
containerWidth: containerWidth || $('.cinema .player').parent().width(),
|
2014-01-18 13:28:01 +00:00
|
|
|
rendererClass: #{options.renderer_class},
|
|
|
|
autoPlay: #{options.autoplay},
|
|
|
|
hud: #{!options.hide_hud}
|
2013-09-20 21:21:25 +00:00
|
|
|
});
|
|
|
|
});
|