Skip to content

Instantly share code, notes, and snippets.

@nfabian13
Created March 10, 2015 23:40
Show Gist options
  • Save nfabian13/faf30fe62b2441653358 to your computer and use it in GitHub Desktop.
Save nfabian13/faf30fe62b2441653358 to your computer and use it in GitHub Desktop.
Send a file to the other client
//To make this work include the RTCMulticonnection.js file
//create a connection object to handle the sending procress of a file.
var connection = new RTCMultiConnection();
document.getElementById('files').onchange = function() {
var file = this.files[0];
connection.send(file);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment