-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (33 loc) · 1.04 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
<html>
<head>
<meta charset="utf-8">
<title>Clip Launcher</title>
<link href="lib/skeleton/css/normalize.css" rel="stylesheet">
<link href="lib/skeleton/css/skeleton.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<script src="lib/angular/angular.min.js"></script>
<script src="main.js"></script>
</head>
<body ng-app="clip-launcher">
<div class="container" ng-controller="List">
<div class="row">
<button class="button" ng-class="{'button-primary': state == 'Pause'}" ng-click="toggleState()">{{state}}</button>
<input file-reader type="file" multiple />
</div>
<table class="u-full-width">
<tr>
<th>File</th>
<th>Audio</th>
<th>Key Binding</th>
</tr>
<tbody>
<tr ng-repeat="clip in clips">
<td>{{clip.name}}</td>
<td><audio-clip src="clip"></td>
<td><key-binding src="clip"></key-binding></td>
</tr>
</tbody>
</table>
</div>
</body>
</html>