KXStudio Website https://kx.studio/
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.

40 lines
1.1KB

  1. <?php
  2. $PAGE_TITLE = "KXStudio : Board";
  3. $PAGE_TYPE = "KXSTUDIO";
  4. $PAGE_SOURCE_1 = ARRAY("/Board");
  5. $PAGE_SOURCE_2 = ARRAY("Board");
  6. include_once("includes/header.php");
  7. ?>
  8. <script type="text/javascript">
  9. function resizeIframe() {
  10. var board = document.getElementById("iframe-board");
  11. window.addEventListener("message", function(event) {
  12. if (event.origin !== "https://board.kx.studio")
  13. return;
  14. var height = parseInt(event.data);
  15. board.style.height = height + "px";
  16. }, false);
  17. board.contentWindow.postMessage("hi", "https://board.kx.studio/");
  18. }
  19. </script>
  20. <noscript>
  21. <p>
  22. NOTE: Automatic height only available with JavaScript enabled.
  23. Visit <a href="https://board.kx.studio/">https://board.kx.studio/</a> for the full page.
  24. </p>
  25. </noscript>
  26. <iframe
  27. id="iframe-board"
  28. src="https://board.kx.studio/public/board/f062a2b1cf34806109a3936a9373b8f044f0e0ab4ede4f1e2bf76195af27"
  29. style="display:block;width:100%;min-height:300px;height:100%;border:none;padding:0;margin:0;"
  30. onload="resizeIframe()"
  31. />
  32. <?php
  33. include_once("includes/footer.php");
  34. ?>