A Twitch.tv viewer reward and games system.
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.

14 lines
510 B

  1. extends layout
  2. block content
  3. iframe#stats_content.uk-width-1-1(onload="resizeStats(this)")
  4. block postscript
  5. script.
  6. $(document).ready( function() {
  7. $("#stats_content").attr("src", "statistics/#{statdir}/index.html");
  8. });
  9. function resizeStats(iframe) {
  10. iframe.height = iframe.contentWindow.document.body.scrollHeight + "px";
  11. $('div.uk-container.uk-container-center').attr("style", "max-width: 100%!important; padding: 15px 5px;");
  12. }