You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
448 B
16 lines
448 B
extends layout
|
|
block content
|
|
div.uk-grid.uk-height-1-1
|
|
br
|
|
br
|
|
iframe#stats_content.uk-width-1-1(onload="resizeStats(this)")
|
|
|
|
block postscript
|
|
script.
|
|
$(document).ready( function() {
|
|
$("#stats_content").attr("src", "statistics/#{statdir}/index.html");
|
|
});
|
|
|
|
function resizeStats(iframe) {
|
|
iframe.height = iframe.contentWindow.document.body.scrollHeight + "px";
|
|
}
|