eg-iframe.html 663 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="chrome=1">
  6. <title>Sencha Examples</title>
  7. <script type="text/javascript" src="../ext-all.js"></script>
  8. <link rel="stylesheet" type="text/css" href="../resources/css/ext-all.css">
  9. <script type="text/javascript">
  10. function loadInlineExample(code, options) {
  11. try {
  12. document.body.innerHTML = '';
  13. eval(code);
  14. } catch (e) {
  15. document.body.innerHTML = e;
  16. }
  17. }
  18. </script>
  19. </head>
  20. <body>
  21. </body>
  22. </html>