-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathclasses.html
131 lines (88 loc) · 3.42 KB
/
classes.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<html>
<head>
<title>AHH! WHERE'S MY CLASS?</title>
<meta name="description" content="What's in There? Provides reverse timetable lookup for any room across any of the University of Queensland's (UQ) campuses.">
<meta name="author" content="Emile Victor, Michael Mallon">
<script src="js/date-en-AU.js"></script>
<link href='http://fonts.googleapis.com/css?family=Coda' rel='stylesheet' type='text/css'>
<script src="js/jquery-1.8.2.min.js"></script>
<script src="js/jquery-ui-1.8.24.custom.min.js"></script>
<script src="js/classmagic.js"></script>
<!-- Mobile! -->
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<LINK href="css/stylesheet.css" rel="stylesheet" type="text/css">
<!-- Google Analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-35269645-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- Google Analytics -->
</head>
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_GB/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<a href="https://github.com/emilevictor/What-s-In-There"><img class="gitHubBanner" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
<div id="header"></div>
<div id="lulzyMessage"></div>
<div id="errorMessage"></div>
<div id="buildingRoomQuery">
<p id="enterARoom">Enter a subject code:</p>
<input tabindex="4" type="text" id="roomName" placeholder="e.g. SCAM1000"/>
<select tabindex="5" id="day">
</select>
<button tabindex="6" id="selectRoom" value="Find class">Find class</button>
</div>
<div id="loader">
<br /><br /><br /><img src="images/ajax-loader.gif" />
</div>
<div id="results">
</div>
<div id="instructionMenu">
<span class="link" onclick="window.location ='index.html'">Go back</span><br /><br />
<span class="link" onclick="window.location ='about.html'">What is this?</span>
<br /><br />
<center>
<div class="fb-like" data-href="https://www.facebook.com/whatsinthereUQ" data-send="true" data-width="400" data-show-faces="true" data-action="recommend"></div></center>
<center>
<br /><br />
<div id="desktopAd">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-0563272635947892";
/* What'sInThere */
google_ad_slot = "7897928048";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<div id="mobileAd">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-0563272635947892";
/* What's in There Mobile */
google_ad_slot = "8047215254";
google_ad_width = 234;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
</div>
</body>
</html>