Giter VIP home page Giter VIP logo

peerpigeon's People

Contributors

aksperiod avatar kensworth avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

aksperiod

peerpigeon's Issues

Fix CSS

Right now the CSS is god awful. The scaling issue needs to be fixed so it's less hideous.

Room recreation when one party leaves

Reboot the RTCPeerConnection when we get the event that the other client has dropped their connection, so that if they return, you can reconnect in the same room.

Connect peer streams together.

Right now both users are having their videos captured through getUserMedia(). The goal is to get both the users own local stream and their peer's remote streams both playing simultaneously.

Fix full room event not making var room == null

The room full handler:

socket.on('full', function (room){
  console.log('Room ' + room + ' is full');
  serverMessage('This room is full, please enter a different room name below.');
  room = null;
});

doesn't set room equal to null such that the method onMessageKeyDown:

function onMessageKeyDown(event) {
    if (event.keyCode == 13) {
        event.preventDefault();
        if(!room) {
          createRoomName();
        }
        else {
          sendText();
        }
    }
}

actually calls createRoomName() instead of sendText()
Why is room != null after the 'full' event handler is executed?

Fix Firefox support.

Right now there seems to be some deprecated functions that we're importing in. Therefore we don't work on Firefox at the moment.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.