-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlookaround.html
33 lines (26 loc) · 1.09 KB
/
lookaround.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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<script type="text/javascript" src="/_ah/channel/jsapi"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript" src="/js/util.js"></script>
<script type="text/javascript" src="/js/lookaround.js"></script>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap-responsive.css">
<link rel="stylesheet" type="text/css" href="css/preety.css">
<link rel="stylesheet" type="text/css" href="css/media.css">
<body>
<script>
channel = new goog.appengine.Channel('{{ token }}');
socket = channel.open();
socket.onmessage = onMessage;
</script>
<div style="display:none">You are logged in as: <div id = 'nickName'>{{ nickname }}</div></div>
<section class = "pageContainer" >
<div class="headerContainer"><div class = "headerTitle">People NearBy: </div><span style='float:right'><div id ="unreadMsg"></div></span></div>
</section>
<style>
</style>
</body>
</html>