-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (68 loc) · 3.25 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
73
74
75
76
77
78
79
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="TouchScript — multitouch framework for Unity3D">
<meta name="author" content="Valentin Simonov / Interactive Lab">
<title>TouchScript</title>
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Droid+Sans:regular,bold|PT+Sans:400,700">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/main.css">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-36698945-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>
</head>
<body data-spy="scroll" data-target=".bs-docs-sidebar">
<div class="container header">
<ul>
<li class="logo"><h2>TouchScript</h2></li>
<li>GitHub (<a href="https://github.com/TouchScript/TouchScript">Unity</a>, <a href="https://github.com/TouchScript/TouchScript.as3">Flash</a>)</li>
<li>|</li>
<li><a href="https://github.com/TouchScript/TouchScript/releases/latest">Latest release</a></li>
<li>|</li>
<li><a href="http://touchprefab.com/">Forum</a></li>
<li>|</li>
<li><a href="https://github.com/TouchScript/TouchScript/wiki/FAQ">FAQ</a></li>
<li>|</li>
<li>Issues (<a href="https://github.com/TouchScript/TouchScript/issues">Unity</a>, <a href="https://github.com/TouchScript/TouchScript.as3/issues">Flash</a>)</li>
</ul>
</div>
<div class="container page">
<div class="footer">
<p>Please refer to <a href="https://github.com/TouchScript/TouchScript/wiki">TouchScript wiki</a> for up-to-date info.</p>
</div>
</div>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/prettify.js"></script>
<script type="text/javascript">
!function ($) {
$(function(){
var $window = $(window)
// make code pretty
window.prettyPrint && prettyPrint()
// side bar
$('.bs-docs-sidenav').affix({
offset: {
top: function () { return $window.width() <= 980 ? 290 : 694 }
, bottom: 270
}
})
// carousel
$('.carousel').carousel({
interval: 5000,
pause: "hover"
})
})
}(window.jQuery)
</script>
</body>
</html>