Skip to content

Add support for burndown charts #25

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: gh-pages
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions burndown.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>
Release Dashboard
</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link type="text/css" href="css/base.css" rel="stylesheet">
<link type="text/css" href="css/menu.css" rel="stylesheet">
<link type="text/css" href="css/colors.css" rel="stylesheet">
<link type="text/css" href="css/dashboard.css" rel="stylesheet">
<link type="text/css" href="css/jquery.jqplot.min.css" rel="stylesheet"/>
<script type="text/javascript" src="owners.js" defer></script>
<script type="text/javascript" src="js/jquery-2.1.0.min.js" defer></script>
<script type="text/javascript" src="js/bugzilla.js" defer></script>
<script type="text/javascript" src="js/jquery.jqplot.min.js" defer></script>
<script type="text/javascript" src="js/jqplot.barRenderer.min.js" defer></script>
<script type="text/javascript" src="js/jqplot.pointLabels.min.js" defer></script>
<script type="text/javascript" src="js/querystring.js" defer></script>
<script type="text/javascript" src="js/regression.js" defer></script>
<script type="text/javascript" src="js/burndown.js" defer></script>
</head>

<body>
<div id="header">
<h3>Burndown Chart Generator</h3>
<form id="make_chart">
Bug: <input type="text" id="bug_id">
<br>
<div id="bug_name"></div>
<div id="stats"></div>
<input type="submit" value="Go">
</form>
</div>
<div id="burndown" style="height:400px;width:600px; "></div>
</body>
</html>
1 change: 1 addition & 0 deletions css/jquery.jqplot.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading