theme.html 892 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <!--
  3. Copyright (c) 2012-2013. Sencha Inc.
  4. -->
  5. <html>
  6. <head>
  7. <title>Ext JS Theme Harness</title>
  8. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  9. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  10. <!--
  11. Load all required links and scripts
  12. -->
  13. <script>
  14. // In sandboxed build all CSS classes must be prefixed with 'x5-'
  15. // The Ext global is not set if it already exists. And the buildSettings.baseCSSPrefix:
  16. // is used as Ext.baseCSSPrefix in platform/core/src/Ext.js
  17. Ext = {
  18. buildSettings: {
  19. baseCSSPrefix: 'x5-'
  20. }
  21. };
  22. </script>
  23. <link rel="stylesheet" type="text/css" href="example.css" />
  24. <script type="text/javascript" src="bootstrap.js"></script>
  25. </head>
  26. <body></body>
  27. </html>