-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
35 lines (30 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cisco SocialMiner - Pop-up Chat Example</title>
<link rel="Shortcut Icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles/main.css" type="text/css">
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/ui-lightness/jquery-ui.css" type="text/css">
<link rel="stylesheet" href="styles/3rdparty/jquery-ui-chatbox/jquery.ui.chatbox.css" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js" type="text/javascript"></script>
<script src="scripts/3rdparty/jquery-ui-chatbox/jquery.ui.chatbox.js" type="text/javascript"></script>
<script src="scripts/3rdparty/jquery-xml2json/jquery.xml2json.js" type="text/javascript"></script>
<script src="scripts/main.js" type="text/javascript"></script>
<script src="scripts/constants.js" type="text/javascript"></script>
<script src="scripts/rest-util.js" type="text/javascript"></script>
<script src="scripts/translate.js" type="text/javascript"></script>
<script src="scripts/chatbox.js" type="text/javascript"></script>
</head>
<body>
<div class="content">
<img src="img/logo.png"/>
</div>
<div class="pageContent">
<img src="img/body.png"/>
</div>
<!-- The div for pop-up chat widget -->
<div id="popup_chat_div"></div>
</body>
</html>