-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdev.html
executable file
·55 lines (47 loc) · 1.84 KB
/
dev.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<title>Dev Example</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<link href="dist/style.min.css" rel="stylesheet" type="text/css"></link>
<style>
body {
background-color: #000;
}
</style>
</head>
<body>
<div id="dev-container">
</div>
<script src="lib/jquery-latest.min.js"></script>
<script src="lib/jquery.mobile.vmouse.min.js"></script>
<script src="lib/viewportSize-min.js"></script>
<script src="lib/modernizr.custom.js"></script>
<script src="lib/cookies.min.js"></script>
<script src="lib/requestAnimationFrame.min.js"></script>
<script src="src/main.js" type="text/javascript"></script>
<script src="src/ObserverCollection.js" type="text/javascript"></script>
<script src="src/GameManager.js" type="text/javascript"></script>
<script src="src/Util.js" type="text/javascript"></script>
<script src="src/EventManager.js" type="text/javascript"></script>
<script src="src/Dot.js" type="text/javascript"></script>
<script src="src/Column.js" type="text/javascript"></script>
<script src="src/Board.js" type="text/javascript"></script>
<script src="src/Renderer.js" type="text/javascript"></script>
<script src="src/Animator.js" type="text/javascript"></script>
<script src="src/ScoreStorage.js" type="text/javascript"></script>
<script type="text/javascript">
Pontos.GameManager.load({
container: $('#dev-container'),
filesPath: './src/',
fitToScreen: true,
expandBg: true,
moves: 3,
infoContent: 'Test info content',
sayings: ['great job!', 'that was awesome!', 'keep going!'],
tweetText: 'sample tweet text'
});
</script>
</body>
</html>