-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrade-distr.html
47 lines (34 loc) · 1.47 KB
/
grade-distr.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<title>EdX Grade 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="jquery-ui-slider-pips-min.js"></script>
<link rel="stylesheet" href="jquery-ui-slider-pips.css"/>
<script src="dist/js/bootstrap.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="jquery.tipsy.js"></script>
<link rel="stylesheet" href="tipsy.css"/>
<link href="dist/css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-glyphicons.css" rel="stylesheet">
<link href="grade-distr.css" rel="stylesheet">
<!-- remove this line later -->
<script src="dummymodule.js"></script>
<script src="studentmodule_to_mydataformat.js"></script>
<script>
var internetExplorer = false;
<!--[if IE 9]>
internetExplorer = true;
<!--[endif]>
if (internetExplorer) {
$('#slider').css('background-image', ieCss);
}
</script>
</head>
<body>
<div class="gradeDistr"></div>
<script src="grade-distr.js"></script>
</body>
</html>