mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-07 01:14:59 +00:00
64 lines
1.4 KiB
HTML
64 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>WebSockets - Simple chat</title>
|
|
<style type="text/css">
|
|
* {
|
|
font-family: tahoma, sans-serif;
|
|
font-size: 12px;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
|
|
p {
|
|
line-height: 18px;
|
|
}
|
|
|
|
div {
|
|
width: 500px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
#content {
|
|
padding: 5px;
|
|
background: #ddd;
|
|
border-radius: 5px;
|
|
border: 1px solid #CCC;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
#input {
|
|
border-radius: 2px;
|
|
border: 1px solid #ccc;
|
|
margin-top: 10px;
|
|
padding: 5px;
|
|
width: 400px;
|
|
}
|
|
|
|
#status {
|
|
width: 88px;
|
|
display: block;
|
|
float: left;
|
|
margin-top: 15px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="content"></div>
|
|
<div>
|
|
<span id="status">Connecting...</span>
|
|
<input type="text" id="input" disabled="disabled"/>
|
|
</div>
|
|
|
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
|
|
<script src="/static/js/app/chat.js"></script>
|
|
<script type="text/javascript">
|
|
alert("Starting content");
|
|
var content = $('#content');
|
|
var input = $('#input');
|
|
var status = $('#status');
|
|
startChat(content, input, status);
|
|
</script>
|
|
</body> |