-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (23 loc) · 966 Bytes
/
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
<html>
<head>
<title>Blackjack</title>
<link href="styles/app.css" rel="stylesheet" type="text/css" media="screen">
</head>
<body>
<script src="lib/jquery.js"></script>
<script src="lib/underscore.js"></script>
<script src="lib/backbone.js"></script>
<script src="compiled/models/Card.js"></script>
<script src="compiled/models/Chip.js"></script>
<script src="compiled/collections/Hand.js"></script>
<script src="compiled/collections/Deck.js"></script>
<script src="compiled/collections/ChipsCollection.js"></script>
<script src="compiled/collections/CollectionBox.js"></script>
<script src="compiled/models/App.js"></script>
<script src="compiled/views/CardView.js"></script>
<script src="compiled/views/HandView.js"></script>
<script src="compiled/views/ChipsView.js"></script>
<script src="compiled/views/AppView.js"></script>
<script src="compiled/main.js"></script>
</body>
</html>