-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
72 lines (60 loc) · 3.03 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
<!doctype html>
<html>
<head>
<title>Pentomino Puzzle</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="manifest.json">
<link rel="stylesheet" href="assets/css/reset.css" />
<link rel="stylesheet" href="assets/css/screen.css" />
<script src="https://use.fontawesome.com/3554191950.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-2700808-7']);
_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 ng-app="pentominoApp"
ng-controller="mainController"
ng-mousemove="methods.doDrag($event)"
ng-touchmove="methods.doDrag($event)"
ng-mouseup="methods.stopDrag($event)"
ng-touchend="methods.stopDrag($event)"
ng-style="getScale()">
<header ng-style="board.theHeaderCss()">
<nav menu id="hamburger"></nav>
<h1>Cover the board</h1>
</header>
<div id="board" board
ng-show="pentominos"
ng-style="board.theBoardCss()"
ng-class="{'solved' : (board.solved && board.newSolution)}"
class="{{board.brdType}}">
</div>
<footer>
<a href="http://www.ashware.nl" target="_blank" class="r">© ashWare</a>
<!-- <span class='st_sharethis' displayText='ShareThis'></span> -->
</footer>
<scripts class="hidden">
<script src="node_modules/angular/angular.js"></script>
<script src="node_modules/ngtouch/build/ngTouch.min.js"></script>
<script src="app/app.module.js"></script>
<script src="app/services/dataservice.js"></script>
<script src="app/components/board.js"></script>
<script src="app/components/pentominos.js"></script>
<script src="app/components/menu.js"></script>
<script src="app/components/controls.js"></script>
<!-- <script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">stLight.options({publisher: "0663d57f-6107-416a-a8c4-e0f10b934d2c", doNotHash: false, doNotCopy: false, hashAddressBar: false});</script> -->
</scripts>
</body>
</html>