-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
91 lines (65 loc) · 3.18 KB
/
index.html
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!-- This prevents the conditional comments below from holding up the page load
www.phpied.com/conditional-comments-block-downloads/ -->
<!--[if IE]><![endif]-->
<title>Scalable JS Architecture</title>
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/third_party/meyerweb/uploadify.css" />
</head>
<body>
<div id="wrapper">
<label for="radius">Radius:</label>
<input type="text" id="radius" value="100" />
<label for="speed">Speed:</label>
<input type="text" id="speed" value="50" />
<input type="button" id="go" value="Walk Lucky" />
<input type="button" id="stop" value="Stop Lucky" />
<img id="lucky" src="images/lucky.jpg" style="display: none" />
<p id="status"></p>
</div> <!-- wrapper -->
<!-- use in production!
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.11/jquery-ui.min.js"></script>
-->
<!-- for non webkit/firefox browsers:
<script type="text/javascript" src="https://getfirebug.com/firebug-lite.js"></script>
-->
<script src="js/third_party/yui/build/yui/yui-min.js" charset="utf-8"></script>
<script src="js/third_party/jquery/jquery-1.6.1.min.js"></script>
<script src="js/third_party/jquery/jquery-ui.min.js"></script>
<script src="js/third_party/swfobject/swfobject.js"></script>
<script src="js/third_party/jquery/plugins/colorpicker/colorpicker.js"></script>
<script src="js/third_party/jquery/plugins/colorpicker/eye.js"></script>
<script src="js/third_party/jquery/plugins/colorpicker/utils.js"></script>
<script src="js/third_party/jquery/plugins/selectmenu.js"></script>
<script src="js/third_party/jquery/plugins/queryloader.js"></script>
<script src="js/third_party/jquery/plugins/shadow.js"></script>
<script src="js/third_party/jquery/plugins/text_selection.js"></script>
<script src="js/third_party/jquery/plugins/throttle_debounce.js"></script>
<script src="js/third_party/jquery/plugins/onImagesLoad.min.js"></script>
<script src="js/third_party/jquery/plugins/uploadify.v2.1.4.js"></script>
<script src="js/core_jquery.js"></script>
<script src="js/sandbox.js"></script>
<script src="js/plugins/dom.js"></script>
<script src="js/plugins/utilities.js"></script>
<script src="js/plugins/external.js"></script>
<script src="js/plugins/effects.js"></script>
<script src="js/plugins/ajax.js"></script>
<script src="js/plugins/ui.js"></script>
<script src="js/plugins/data.js"></script>
<script src="js/plugins/config.js"></script>
<script src="js/plugins/html_generator.js"></script>
<script src="js/plugins/form_markup_generator.js"></script>
<script src="js/plugins/event_manager.js"></script>
<script src="js/plugins/test.js"></script>
<script src="js/helpers/lucky.js"></script>
<script src="js/modules/lucky.js"></script>
<script src="js/modules/status.js"></script>
<script src="js/modules/viewport.js"></script>
<script src="js/modules/inputs.js"></script>
<script src="js/application.js"></script>
</body>
</html>