forked from edspencer/extjs-solitaire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 1.32 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>ExtJS Solitaire</title>
<link rel="stylesheet" type="text/css" href="http://extjs.cachefly.net/ext-2.2/resources/css/ext-all.css" />
<link rel="stylesheet" href="stylesheets/solitaire.css" type="text/css" media="screen" charset="utf-8" />
</head>
<body>
<script type="text/javascript" src="http://extjs.cachefly.net/builds/ext-cdn-400.js"></script>
<script type="text/javascript" src="javascripts/solitaire/solitaire-min.js"></script>
<script type="text/javascript">
Ext.dd.DragDropMgr.mode = Ext.dd.DragDropMgr.INTERSECT;
Ext.onReady(function() { new Solitaire.Game().launch(); });
</script>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-4113660-2");
pageTracker._trackPageview();
} catch(err) {}
</script>
</body>
</html>