burnchart/public/index.html

19 lines
443 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-11-05 12:44:15 +00:00
<link href="app.bundle.min.css" media="all" rel="stylesheet" type="text/css" />
<script src="app.bundle.min.js"></script>
<script>
2013-08-15 17:12:12 +00:00
document.onreadystatechange = function() {
if (document.readyState == "complete") {
2013-11-05 12:44:15 +00:00
require('ghbc').call(null);
2013-08-15 17:12:12 +00:00
}
};
</script>
2013-08-15 17:12:12 +00:00
</head>
<body>
</body>
</html>