-
Notifications
You must be signed in to change notification settings - Fork 0
/
WordScramble.htm
56 lines (50 loc) · 1.86 KB
/
WordScramble.htm
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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Scrammbler HTML App</title>
<link rel="stylesheet" href="http://dl.dropbox.com/u/67252270/bootstrap/css/bootstrap.css" type="text/css" />
<link rel="stylesheet" href="wordScramble.css" type="text/css" />
<script src="http://code.jquery.com/jquery-git.js"></script>
<script src="http://dl.dropbox.com/u/67252270/bootstrap/js/bootstrap.js"> </script>
<script src="db.js"></script>
<script src="wordReference.js"> </script>
<script src="bingTranslator.js"> </script>
<script src="wiktionaryParser.js"> </script>
<script src="rhymeBrain.js"> </script>
<script src="wordScramble.js"> </script>
<script src="vendor/mustache.js"> </script>
<script src="youTubePlayer.js"> </script>
<script src="https://www.youtube.com/iframe_api"></script>
<script src="http://code.jquery.com/ui/1.9.1/jquery-ui.js"> </script>
</head>
<body class="defaultBody">
<audio id="audioSample"></audio>
<div id="myCarousel" class="carousel slide">
<div class="carousel-inner">
<div class="item active"></div>
<div class="item"></div>
</div>
</div>
<div id="template" style="display: none">
<p id="sentence">{{sentence}}</p>
<p id="translation">{{translation}}</p>
<div id="smallRack"></div>
<br />
<div id="rack">
{{#tiles}}
<div class="tile btn btn-primary">{{.}}</div>
{{/tiles}}
</div>
<br />
<a class="btn" id="playSampleBtn"><i class="icon-play"></i></a>
<div id="wordReference" style="display: none">
<span id="phonetics"></span>
<a class="btn" id="playBtn" href="#"><i class="icon-volume-up"></i></a>
<div id="wordReferenceData">
</div>
<button id="nextBtn" class="btn btn-primary btn-large" type="button">Next!</button>
</div>
</div>
</body>
</html>