<!DOCTYPE html>
<html>

<head>
    <title>Prof Stef</title>
    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
    <meta name="author" content=""/>
    <script type='text/javascript' src='the.js'></script>
</head>

<body>
<script type='text/javascript'>
    var global = typeof global === "undefined" ? window : global || window;
    new Promise(function (resolve, reject) {
        require(['app'], resolve, reject);
    }).then(function (amber) {
        return amber.initialize({
            //used for all new packages in IDE
            'transport.defaultAmdNamespace': "profstef"
        }).then(function () {
            require(["amber-ide-starter-dialog"], function (dlg) {
                dlg.start();
            });
            amber.globals.ProfStef._start();
        });
    });
</script>
</body>

</html>