forked from requirejs/requirejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorder.html
More file actions
45 lines (45 loc) · 1.5 KB
/
order.html
File metadata and controls
45 lines (45 loc) · 1.5 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
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<title>require.js: Order Plugin Test</title>
<script type="text/javascript" src="../../require.js"></script>
<script type="text/javascript" src="../doh/runner.js"></script>
<script type="text/javascript" src="../doh/_browserRunner.js"></script>
<script type="text/javascript">
require({
baseUrl: "./",
ordered: true,
paths: {
order: "../../order"
}
},
//Test ordering .js paths and scripts referred to without .js
["require", "one.js", "two", "three.js", "bar.js"],
function(require) {
var oneName = one.name,
twoName = two.name,
threeName = three.name;
doh.register(
"order",
[
function order(t){
t.is("one", oneName);
t.is("one", two.oneName);
t.is("two", twoName);
t.is("two", three.twoName);
t.is("three", threeName);
t.is(1, bar);
}
]
);
doh.run();
}
);
</script>
</head>
<body>
<h1>require.js: Order Plugin Test</h1>
<p>To properly test, clear cache in the browser.</p>
<p>Check console for messages</p>
</body>
</html>