-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
107 lines (98 loc) · 3.32 KB
/
index.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html ng-app="stats_app">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.3/angular.min.js"> </script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.3/angular-route.min.js"> </script>
<script
src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script>
MathJax.Hub.Config({
"HTML-CSS": {
availableFonts: ["STIX"],
preferredFont: "STIXGeneral",
webFont: "STIX-Web",
imageFont: "STIX-Web",
},
SVG: {
font:"STIX-Web"
},
});
</script>
<script src="app/js/highcharts-custom.js"></script>
<script src="app/js/ng-file-upload.min.js"></script>
<script src="app/services/one_var_stats.js"></script>
<script src="app/controllers/input_list.js"></script>
<script src="app/controllers/hyptests_main.js"></script>
<script src="app/controllers/main_controller.js"></script>
<script src="app/directives/gdOnevarResults.js"></script>
<script src="app/directives/gdRandinput.js"></script>
<link rel="stylesheet" href="app/css/bootstrap.min.css" />
<style>
.tab-content {
padding: 10px;
}
/* Sticky footer styles
* sticky footer css taken from
* http://getbootstrap.com/examples/sticky-footer-navbar/sticky-footer-navbar.css */
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
margin-bottom: 90px;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
border-top: 1px solid #ddd;
/* Set the fixed height of the footer here */
height: 90px;
/*background-color: #121212;*/
padding: 15px;
}
.footer > .container {
color: #444444;
}
/* get rid of the stupid spinners */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=number] {
-moz-appearance:textfield;
}
</style>
<script src="app/js/ui-bootstrap-custom-tpls-0.13.0.min.js"></script>
</head>
<body>
<!-- Put title here -->
<!-- Put scrolling options
to choose calculation type
here -->
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#/">Stats</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="#/onevar">One-variable statistics</a></li>
<li><a href="#/hyptests">Statistical hypothesis tests</a></li>
</ul>
</div>
</div>
</nav>
<div ng-view></div>
<footer class="footer">
<div class="container">
<p class="text-center">Copyright (C) 2015 gderecho</p>
<p class="text-center">The code in this app is <a href="http://www.gnu.org/philosophy/free-sw.en.html">free software</a> licensed under the <a href="http://www.gnu.org/licenses/agpl-3.0.en.html">GNU Affero General Public License v3.0</a>. </p>
</div>
</footer>
</body>
</html>