bungee
Version:
Bungee is a declarative language engine to run inside a browser. The node module contains the offline compiler.
29 lines (21 loc) • 750 B
HTML
<html>
<head>
<title> Bungee </title>
<link rel="stylesheet" href="normalize.css">
<script type="text/javascript">
// global config
var config = {};
config.normalBackgroundColor = "#3C7DC1";
config.hightlightBackgroundColor = "#36A7DF";
config.downBackgroundColor = "#006B9F";
config.normalTextColor = "white";
config.highlightTextColor = "white";
</script>
</head>
<body>
<div style="margin: 0; margin-left: 300px">
<iframe id="demoArea" src="" style="background-color: white; border-width: 0; margin: auto; width: 100%; height: 100%"></iframe>
</div>
<script src='bundle.js'></script>
</body>
</html>