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
33 lines (32 loc) · 1.04 KB
/
AMD.html
File metadata and controls
33 lines (32 loc) · 1.04 KB
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
<!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/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',
jasmine: 'test/lib/jasmine',
'jasmine-html': 'test/lib/jasmine-html',
'jasmine-jquery': 'test/lib/jasmine-jquery'
},
shim: {
jasmine: [],
'jasmine-html': ['jasmine'],
'jasmine-jquery': ['jquery', 'jasmine']
}
});
require(['jquery', 'waypoints', 'jasmine', 'jasmine-html', 'jasmine-jquery', 'shortcuts/infinite-scroll/waypoints-infinite', 'shortcuts/sticky-elements/waypoints-sticky'], function(){
testLoader();
});
</script>
</head>
<body></body>
</html>