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