asciinema.org/app/views/asciicasts/raw.html.slim

12 lines
419 B
Plaintext
Raw Normal View History

2013-06-12 19:52:15 +00:00
= player @asciicast
javascript:
$(function() {
var target = parent.postMessage ? parent : (parent.document.postMessage ? parent.document : undefined);
if (typeof target != "undefined" && window !== window.parent) {
var w = $('.player').css('width');
var h = $('.player').css('height');
2013-06-12 19:52:15 +00:00
target.postMessage(['asciicast:size', { id: #{@asciicast.id}, width: w, height: h }], '*');
}
});