hem
Version:
stitches CommonJS, and ties up other lose ends of web-app development.
20 lines (19 loc) • 444 B
HTML
<html>
<head>
<meta charset=utf-8>
<title>Spine App</title>
<link rel="stylesheet" href="/application.css" type="text/css" charset="utf-8">
<script src="/application.js" charset="utf-8"></script>
<script charset="utf-8">
var exports = this;
jQuery(function(){
var App = require("index");
exports.app = new App({el: $("body")});
});
</script>
</head>
<body>
<p>loading...</p>
</body>
</html>