Преглед изворни кода

Merge branch 'master' of github.com:peers/peerjs

ericz пре 12 година
родитељ
комит
996214b87c
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -12,7 +12,7 @@ Each peer simply provides a identifier with which other peers using the same API
 
 **Peer**
 
-```js
+```html
 <script>
   var peer = new Peer('someid', {key: 'apikey'});
   peer.on('connection', function(conn) {
@@ -26,7 +26,7 @@ Each peer simply provides a identifier with which other peers using the same API
 
 **Connecting peer**
 
-```js
+```html
 <script>
   var peer = new Peer('anotherid', {key: 'apikey'});
   var conn = peer.connect('someid');