-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathattempts_distribution.html
31 lines (22 loc) · 1.04 KB
/
attempts_distribution.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<title>EdX Attempts Distribution</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css"/>
<script src="dist/js/bootstrap.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<link href="dist/css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-glyphicons.css" rel="stylesheet">
<link href="attempts_distribution.css" rel="stylesheet">
<script src="jquery.tipsy.js"></script>
<link rel="stylesheet" href="tipsy.css"/>
<script src="dataGenerator.js"></script>
<script src="edx-data-formatter.js"></script>
</head>
<body>
<div class="attempts"></div>
<script src="attempts_distribution.js"></script>
</body>
</html>