burnchart/public/index.html

19 lines
424 B
HTML
Raw Normal View History

<!doctype html>
<html>
<head>
<meta charset="utf-8">
2013-08-15 17:12:12 +00:00
<title>GitHub Burndown Chart</title>
2013-09-29 22:41:27 +00:00
<link href="build.css" media="all" rel="stylesheet" type="text/css" />
<script src="build.js"></script>
<script>
2013-08-15 17:12:12 +00:00
document.onreadystatechange = function() {
if (document.readyState == "complete") {
require('app').call(null);
}
};
</script>
2013-08-15 17:12:12 +00:00
</head>
<body>
</body>
</html>