2013-06-12 19:52:15 +00:00
|
|
|
= player @asciicast
|
|
|
|
|
|
|
|
javascript:
|
2013-06-12 19:33:30 +00:00
|
|
|
$(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 }], '*');
|
2013-06-12 19:33:30 +00:00
|
|
|
}
|
|
|
|
});
|