Remove unused voice & video on-clicks from RoomHeader.

This commit is contained in:
David Baker 2016-03-02 14:54:38 +00:00
parent 0051c91126
commit 45857fa12c

View file

@ -68,22 +68,6 @@ module.exports = React.createClass({
} }
}, },
onVideoClick: function(e) {
dis.dispatch({
action: 'place_call',
type: e.shiftKey ? "screensharing" : "video",
room_id: this.props.room.roomId
});
},
onVoiceClick: function() {
dis.dispatch({
action: 'place_call',
type: "voice",
room_id: this.props.room.roomId
});
},
onNameChanged: function(value) { onNameChanged: function(value) {
this.setState({ name : value }); this.setState({ name : value });
}, },