samdutton / simpl

Simplest possible examples of HTML, CSS and Javascript:
https://simpl.info
Apache License 2.0
5.18k stars 1.64k forks source link

Little error on rtcdatachannel #58

Closed Snyder closed 9 years ago

Snyder commented 9 years ago

Hi, i was trying to test the rtcdatachannel but i found that on /js/main.js on lines 19 and 20

var dataChannelSend = document.getElementById('#dataChannelSend');
var dataChannelReceive = document.getElementById('#dataChannelReceive');

should be

var dataChannelSend = document.getElementById('dataChannelSend');
var dataChannelReceive = document.getElementById('dataChannelReceive');

Sorry for the trouble, just noticed it, and thanks, i'm starting to develop something and this examples are really useful

samdutton commented 9 years ago

Thanks! Not sure how I managed to mess that up... Now fixed.