-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
72 lines (65 loc) · 4.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
<html>
<head>
<title>Tttrio - a fast real-time multiplayer pattern-matching game to hone your logical skills</title>
<meta name="description" content="Play Tttrio free now. Face off against friends, family, and strangers in a skill-based game of quick perception and pattern matching. Find trios of cards to score points and win.">
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta names="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta property="fb:app_id" content="273726349334428" />
<meta property="og:title" content="Tttrio - a fast real-time multiplayer pattern-matching game to hone your logical skills"/>
<meta property="og:type" content="game"/>
<meta property="og:url" content="http://tttrio.com"/>
<meta property="og:image" content="http://tttrio.com/images/logo.png"/>
<meta property="og:site_name" content="Tttrio"/>
<meta property="og:description" content="Play Tttrio free now. Face off against friends, family, and strangers in a skill-based game of quick perception and pattern matching. Find trios of cards to score points and win."/>
<link rel="icon" href="/images/favicon.png" sizes="64x64">
<link rel="apple-touch-icon" href="/images/favicon.png"/>
<link type="text/css" href="/css/jquery-ui-themes/jquery-ui-1.8.16.custom.css" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="/css/animations.css" media="screen, handheld" >
<link type="text/css" rel="stylesheet" href="/css/nurd.css" media="screen, handheld" >
<!--link type="text/css" rel="stylesheet" href="/css/handheld.css" media="handheld" -->
<script type="text/javascript" src="/js/lib/jquery-1.4.3.js" ></script>
<script type="text/javascript" src="/js/lib/jquery-ui-1.8.16.custom.min.js"></script>
<script type="text/javascript" src="/js/lib/underscore.js" ></script>
<script type="text/javascript" src="/js/lib/jade.min.js" ></script>
<script type="text/javascript" src="/js/lib/modernizr-2.0.6.js"></script>
<script type="text/javascript" src="jsutil.js" ></script>
<script type="text/javascript" src="EventEngine.js" ></script>
<script type="text/javascript" src="/js/EventEngineHttpClient.js" ></script>
<script type="text/javascript" src="/js/GameClient.js" ></script>
<script type="text/javascript" src="/js/ChatClient.js" ></script>
<script type="text/javascript">
$(document).ready(function() {
new EventEngineHttpClient({
onInitialized: function() {
var game = new Game();
}
});
});
EventEngine.observeAll(function(event) {
log('received event:' + event.name + ', data=' + JSON.stringify(event.data));
});
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-13105739-3']);
_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>
</head>
<body>
<div id="fb-root"></div>
<script>
// Googple Plus One
(function() { var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true; po.src = 'https://apis.google.com/js/plusone.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s); })();
// Facebook Like
(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_US/all.js#xfbml=1&appId=273726349334428"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));
// Twitter Share Button
(function() { var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//platform.twitter.com/widgets.js'; var s0 = document.getElementsByTagName('script')[0]; s0.parentNode.insertBefore(s, s0); })();
</script>
</body>
</html>