Update public/room.html
Browse files- public/room.html +3 -6
public/room.html
CHANGED
|
@@ -1,14 +1,11 @@
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
<html>
|
| 3 |
-
<head>
|
| 4 |
-
<title>Room Chat</title>
|
| 5 |
-
</head>
|
| 6 |
<body>
|
| 7 |
<h3 id="roomTitle"></h3>
|
| 8 |
|
| 9 |
-
<div id="chat" style="border:1px solid #000;
|
| 10 |
-
|
| 11 |
-
<input id="msg" placeholder="Type message">
|
| 12 |
<button onclick="send()">Send</button>
|
| 13 |
|
| 14 |
<script src="/socket.io/socket.io.js"></script>
|
|
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
<html>
|
| 3 |
+
<head><title>Room</title></head>
|
|
|
|
|
|
|
| 4 |
<body>
|
| 5 |
<h3 id="roomTitle"></h3>
|
| 6 |
|
| 7 |
+
<div id="chat" style="height:300px;border:1px solid #000;overflow:auto"></div>
|
| 8 |
+
<input id="msg" placeholder="Message">
|
|
|
|
| 9 |
<button onclick="send()">Send</button>
|
| 10 |
|
| 11 |
<script src="/socket.io/socket.io.js"></script>
|