windhamdavid 9 years ago
parent
commit
7434b3e80f
3 changed files with 4 additions and 3 deletions
  1. 1 0
      index.html
  2. 1 1
      server.js
  3. 2 2
      style.css

+ 1 - 0
index.html

@@ -3,6 +3,7 @@
 <head>
 <meta charset="UTF-8" />
 <meta name="viewport" content="width=device-width, initial-scale=1">
+<meta http-equiv="X-UA-Compatible" content="chrome=1"/>
 <head>
 <title>David</title>
 <link type="text/css" href="/style.css" rel="stylesheet"></link>

+ 1 - 1
server.js

@@ -33,7 +33,7 @@ server.on('connection', function (socket){
 });
 
 app.get('/status', function(req, res) {
-	if (folks >= 2) {res.json({'online': 'yes'});}
+	if (folks >= 1) {res.json({'online': 'yes'});}
 	else {res.json({'online': 'no'});}
 });
 

+ 2 - 2
style.css

@@ -11,7 +11,7 @@ body {
 }
 #videos {
   position: absolute;
-  top: 0px;
+  top: -5px;
   left: 0px;
   right: 0px;
   bottom: 0px;
@@ -36,7 +36,7 @@ body {
 }
 #messages {
   overflow: scroll;
-  background: none repeat scroll 0 0 #cecece;
+  background: none repeat scroll 0 0 #fff;
   font: 16px/18px 'Helvetica Neue',Arial,Helvetica,sans-serif;
   height: 154px;
   letter-spacing: 1px;