<!DOCTYPE html>
<html onload="">

<head>
    <title>Web Bean Test</title>
    <meta charset="utf-8">
    <meta id="viewport" name="viewport" content="width=device-width, initial-scale=1.0">

    <script src="/EAMD.ucp/Components/com/ceruleanCircle/EAM/3_services/WebBeans/0.4.0/src/js/WebBeans.class.js" type="text/javascript"></script>
    <!--
    <script src="/EAMD.ucp/Components/org/JQuery/3.2.1/dist/jquery.min.js" type="text/javascript" onload="console.log('jQuery loaded')"></script>
    -->
    <style type="text/css">
        html,
        body {
            height: 100%;
            overflow: hidden
        }
        
        .fullHeight {
            height: 100%;
        }
        
        header,
        footer,
        .panel-heading,
        .panel-footer {
            height: 10%;
            background-color: lightblue;
        }
        
        .content,
        .panel-body {
            height: 80%;
            overflow-y: scroll
        }
    </style>
</head>

<body>
    <div id="weBeanRoot" drop>
    </div>
    <script type="text/javascript">
        class NiceOnload {
            constructor() {
                this.niceOnload = null;
                if (document.body.onload != null)
                    this.niceOnload = document.body.onload;

                document.body.onload = this.onload.bind(this);
            }

            onload(event) {
                if (this.niceOnload != null)
                    this.niceOnload();
            }
        }
        new NiceOnload();

        function App() {}
    </script>
</body>

</html>