forked from imakewebthings/waypoints
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAMD.html
More file actions
28 lines (27 loc) · 889 Bytes
/
AMD.html
File metadata and controls
28 lines (27 loc) · 889 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
27
28
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Waypoints AMD 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="lib/jasmine-jquery.js"></script>
<script src="lib/coffee-script.js"></script>
<script src="lib/require.js"></script>
<script src="lib/testloader.js"></script>
<script type="text/javascript">
require.config({
baseUrl: '../',
paths : {
jquery : 'http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min',
waypoints: 'waypoints'
}
});
require(['jquery', 'waypoints', 'shortcuts/infinite-scroll/waypoints-infinite', 'shortcuts/sticky-elements/waypoints-sticky'], function(){
testLoader();
});
</script>
</head>
<body></body>
</html>