iframe-inner.html 572 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  5. </head>
  6. <body style="height: 100%">
  7. <div
  8. style="
  9. position: absolute;
  10. left: 10px;
  11. top: 10px;
  12. width: 400px;
  13. height: 200px;
  14. border: 1px solid silver;
  15. "
  16. id="editor"
  17. ></div>
  18. <script src="dev-setup.js"></script>
  19. <script>
  20. loadEditor(function () {
  21. monaco.editor.create(document.getElementById('editor'), {
  22. value: `function hello()\n{\treturn 5;\n}`,
  23. language: 'javascript'
  24. });
  25. });
  26. </script>
  27. </body>
  28. </html>