forked from imakewebthings/waypoints
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (23 loc) · 861 Bytes
/
index.html
File metadata and controls
26 lines (23 loc) · 861 Bytes
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Jasmine Test Runner</title>
<link rel="stylesheet" type="text/css" href="lib/jasmine.css">
<script src="lib/jasmine.js"></script>
<script src="lib/jasmine-html.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<script src="lib/jasmine-jquery.js"></script>
<script src="lib/coffee-script.js"></script>
<script src="lib/testloader.js"></script>
<!-- include source files here... -->
<script src="../waypoints.js"></script>
<script src="../shortcuts/infinite-scroll/waypoints-infinite.js"></script>
<script src="../shortcuts/sticky-elements/waypoints-sticky.js"></script>
<!-- setup env and run tests -->
<script>
testLoader();
</script>
</head>
<body></body>
</html>