<!doctype html>
<html>
<head>
<meta charset="utf-8">

<link rel="stylesheet" href="css/topcoat-desktop-dark.min.css"/>
<link  id="hostStyle" rel="stylesheet" href="css/styles.css"/>
<link  id="scrollbars" rel="stylesheet" href="css/scrollbars.css"/>

<title></title>
</head>

<body class="hostElt">

    <div id="content">
        <!-- Content goes here -->
    </div>

    <script src="js/libs/jquery-2.0.2.min.js"></script>
    <script src="../common/js/libs/CSInterface.js"></script>
    <script>
        // Versions of CEP < 6.1 won't load jquery correctly from the script tag because window.module is defined.
        // However CEP >= 6.1 won't load jquery correctly from require() because the global object in the require function is not the same.
        // Therefore fallback to require if the script tag loaded but didn't define jQuery correctly
        if (!window.$) {
            window.$ = window.jQuery = require("js/libs/jquery-2.0.2.min.js");
        }
        var PreviewGlobal = require("../common/PreviewGlobal.js");
        PreviewGlobal.csInterface = new CSInterface();
        PreviewGlobal.EvalScript_ErrMessage = EvalScript_ErrMessage; //defined in global from CSInterface
        PreviewGlobal.window = window;
        PreviewGlobal.localeStrings = PreviewGlobal.csInterface.initResourceBundle();
    </script>

    

    <script src="js/themeManager.js"></script>
    <script src="js/main.js"></script>

</body>
</html>
