-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolorwars.php
More file actions
57 lines (52 loc) · 1.44 KB
/
colorwars.php
File metadata and controls
57 lines (52 loc) · 1.44 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
46
47
48
49
50
51
52
53
54
55
56
57
<?php require 'header.php'; ?>
<body>
<div id="topbar" style="margin-bottom: 0px;">
<div id="title"><div id="matchName">ReLoCoring: Matchname</div></div>
<div id="leftnav"><a href="index.php">Menü</a></div>
<div id="rightnav"><a href="stats.php">Statistik</a></div>
</div>
<div id="gmap"></div>
<div id="debug" class="debug">
<div class="playerBg bgMe">
<table>
<tr>
<td>CallBack Response: <div id="message"></div></td>
<td>currentLat <div id="currentLat"></div></td>
<td>currentLong <div id="currentLong"></div></td>
</tr>
</table>
</div>
</div>
<div id="playerMe" class="player">
<div class="playerBg bgMe"></div>
<div class="playerFg">
<!-- img src="iwebkit/avatar-nils.jpg" / -->
<div id="player">Niels</div>
<span>750 qm</span><br />
<span>Pan map:</span>
<form><input id="locateSwitch" name="locateSwitch" type="checkbox" checked /></form>
</div>
</div>
<div id="playerEnemy" class="player">
<div class="playerBg bgEnemy"></div>
<div class="playerFg">
<img src="iwebkit/avatar-jan.jpg" />
<div>Jan</div>
<span>637 qm</span>
</div>
</div>
<script>
player = { name: null };
jQuery(document).ready(function(){
jQuery('#player').html(gup('playername'));
player = {
name: gup('playername')
};
localStorage.clear();
initialize();
showMe();
periodicallyUpdateLocation();
});
</script>
</body>
</html>