Newer
Older
ubFramework / Portal / docroot / js / plugins / oclazyload / examples / requireJSExample / index.html
@Christopher W. Olsen Christopher W. Olsen on 10 Dec 2017 719 bytes Cleaning Up Making It A Sub Module
<!DOCTYPE html>
<html>
    <head>
        <title></title>
        <meta http-equiv="content-type" content="text/html; charset=UTF8"/>
        <link rel="stylesheet" type="text/css" href="css/ng-grid.css">
        <style>
            .gridStyle {
                border: 1px solid rgb(212, 212, 212);
                width: 400px;
                height: 300px
            }
        </style>
        <script type="text/javascript" data-main="js/main" src="js/require.js" charset="UTF8"></script>
    </head>
    <body data-ng-controller="mainController">
        <span>{{test}}</span>
        <button ng-click="load()">Load Module That Uses ngGrid</button>
        <div ng-include="partialUrl"></div>
    </body>
</html>