blob: 08e0ac6aa28780e39ffff651dd84e43aaa886a60 (
plain)
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
|
<!doctype html>
<html>
<head>
<title>sort wav files</title>
<meta charset='utf-8' />
<link rel='stylesheet' href='css.css' type='text/css' />
</head>
<body>
<div id="controls">
<button id="save">Save order</button>
</div>
<div id="lists"></div>
</body>
<script type="text/html" id="row-template">
<div class='{className}' data-src='{src}'>
<audio src='{src}' />
<span></span>
<button class='play'>Play</button>
</div>
</script>
<script type="text/html" id="controls-template">
<div class='{className}'>
<button class="play-row"><< Play row</button>
<button class="save-pair">Save pair</button>
</div>
</script>
<script src='js/vendor/jquery.min.js'></script>
<script src='js/vendor/jquery-ui-1.10.3.custom.min.js'></script>
<script src='js/app.js'></script>
</html>
|