win-schema
Version:
WIN module that handles all things schema related! Schema validation, schema loading, schema remote loads, etc etc etc
42 lines (24 loc) • 890 B
HTML
<html>
<head>
<meta charset=utf-8 />
<title></title>
<script type="text/javascript" src="/build/build.js"></script>
</head>
<body class="flexcenter">
<div id="buttons" style="display: inline-block;">
<div id="addChild" style="display: inline-block; margin: 5px;">Add Child</div>
<div id="removeChild" style="display: inline-block; margin: 5px;">Remove Random Child</div>
<div id="addPage" style="display: inline-block; margin: 5px;">Add Page</div>
<div id="backPage" style="display: inline-block; margin: 5px;">Back a Page</div>
</div>
<div id="flex" style="height:90%;"> </div>
<!-- Now we start messing with the flex object -->
<script type="text/javascript">
window.onload = function() {
var winbackbone = require('win-backbone');
//now we access the backbone thorugh this html page yo yo yo yo yo
}
</script>
</body>
</html>