-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule-pattern-test.html
More file actions
41 lines (34 loc) · 908 Bytes
/
module-pattern-test.html
File metadata and controls
41 lines (34 loc) · 908 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
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<title>Module Pattern</title>
<style>
#link {
color: #F00;
cursor: pointer;
font-family: Helvetica, sans;
font-size: 10px;
text-decoration: underline;
}
#box {
background-color: #F00;
height: 40px;
left: 10px;
position: absolute;
width: 40px;
}
</style>
</head>
<body>
<div id="app">
<a id="link">My Cool Test Link</a>
<div id="box"></div>
</div>
<script type="text/javascript" src="jquery.js"></script>
<!-- Load out of order to make sure that it's cool-->
<script type="text/javascript" src="sub-module.js"></script>
<script type="text/javascript" src="behavior.js"></script>
<script type="text/javascript" src="core.js"></script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>