-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
35 lines (31 loc) · 903 Bytes
/
popup.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="css/styles.css">
<!-- // <script src="vendor/jquery/dist/jquery.min.js"></script> -->
<!-- // <script src="vendor/jquery-ui/jquery-ui.min.js"></script> -->
<title></title>
</head>
<body>
<div id="status"></div>
<!-- <table>
<tr>
<td><button class="myButton" id="record">Record</button></td>
</tr>
<tr>
<td><button class="" id="stop">Stop</button></td>
</tr>
<tr>
<td><button id="playback">Playback</button></td>
</tr>
</table> -->
<ul id="button-group">
<li><button id="record" class="button">Record</button></li>
<li><button id="stop" class="button">Stop</button></li>
<li><button id="playback" class="button">Play</button></li>
</ul>
<script src="popup.js"></script>
</body>
</html>