Browse Source

stylefix - removed commas ending hash

Addresses comments in
https://github.com/webRTC/webrtc.io-demo/pull/11#discussion_r2787744
jbenet 12 years ago
parent
commit
af0231fd65
1 changed files with 2 additions and 2 deletions
  1. 2 2
      example/index.html

+ 2 - 2
example/index.html

@@ -128,7 +128,7 @@
         recv: function (message) {
           return message;
         },
-        event: 'receive_chat_msg',
+        event: 'receive_chat_msg'
       };
 
       var dataChannelChat = {
@@ -141,7 +141,7 @@
         recv:  function (channel, message) {
           return JSON.parse(message).data;
         },
-        event: 'data stream data',
+        event: 'data stream data'
       };
 
       function initChat() {