-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (34 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>...</title>
<script type="text/javascript" charset="utf-8" src="http://onlineaspect.com/uploads/postmessage/postmessage.js"></script>
<script type='text/javascript' src='js/resources/knockout-3.0.0.js'></script>
<script type='text/javascript' src='js/resources/jquery-1.7.1.min.js'></script>
<script type='text/javascript' src='js/resources/jquery-ui.js'></script>
<script type='text/javascript' src='js/resources/bootstrap.js'></script>
<script type='text/javascript' src='js/dictionary.js'></script>
<script type='text/javascript' src='js/programming_features.js'></script>
<script type='text/javascript' src='js/ia.js'></script>
<script type='text/javascript' src='js/bd_api.js'></script>
<LINK href="css/bootstrap.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-- This is a *view* - HTML markup that defines the appearance of your UI -->
<div id="container" >
<div id="ask2" class="jumbotron">
<p data-bind="text: botText"></p>
<input data-bind="value: userText" id="input"/>
<button data-bind="click: getAnswer">Send</button>
<button data-bind="click: dontknow">I don' know</button>
</div>
</div>
<script type='text/javascript' src='js/viewmodel.js'></script>
<script type="text/javascript">
kfield = "opera";
main();
newQuestion();
</script>
</body>
</html>