Browse Source

updated readme

Dennis Mårtensson 12 years ago
parent
commit
421d599c2e
4 changed files with 6 additions and 6 deletions
  1. 1 1
      README.md
  2. 2 2
      example/index.html
  3. 2 2
      example/server.js
  4. 1 1
      package.json

+ 1 - 1
README.md

@@ -10,7 +10,7 @@ You can have a look at the demo on http://multiwebrtc.nodejitsu.com
 Run in your terminal
 
 ```bash 
-git clone git@github.com:dennismartensson/webrtc.io-demo.git
+git clone git@github.com:webRTC/webrtc.io-demo.git
 ```
 
 ```bash 

+ 2 - 2
example/index.html

@@ -159,10 +159,10 @@
             window.location.hash = room;
         }
         //When connectiong to nodejitsu
-        //rtc.connect("http://multiwebrtc.nodejitsu.com/", room);
+        rtc.connect("http://multiwebrtc.nodejitsu.com/", room);
 
         //When using localhost
-        rtc.connect("http://localhost:8000/", room);
+        //rtc.connect("http://localhost:8000/", room);
 
         rtc.on('add remote stream', function(stream, socketId) {
           console.log("ADDING REMOTE STREAM...");

+ 2 - 2
example/server.js

@@ -5,9 +5,9 @@ var colors = {};
 
 
 //When connectiong to nodejitsu
-//app.listen(80);
+app.listen(80);
 //When using localhost
-app.listen(8000);
+//app.listen(8000);
 
 app.get('/', function(req, res) {
   res.sendfile(__dirname + '/index.html');

+ 1 - 1
package.json

@@ -1,7 +1,7 @@
 {
   "name": "MultiWebRTC",
   "description": "Example of multi user webrtc",
-  "version": "0.0.1-28",
+  "version": "0.0.1-30",
   "engines": {
     "node": ">= 0.6.0"
   },