-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
28 lines (25 loc) · 739 Bytes
/
popup.html
File metadata and controls
28 lines (25 loc) · 739 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>TeXTalk Popup</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type=text/javascript>
$(function() {
$('a#test').bind('click', function() {
$.getJSON('/forward',
function(data) {
});
return false;
});
});
</script>
</head>
<body>
<div style="text-align: center;">
<form action="/forward/" method="post">
<button id="stupidbutton" name="forwardBtn" type="submit">To Calculate (Wait one second before speaking into the microphone)</button>
</form>
</div>
</body>
</html>