Skip to content
Snippets Groups Projects
Commit 98ea3525 authored by Matthew Hodgson's avatar Matthew Hodgson
Browse files

shift-click the video button to screenshare rather than overriding the button entirely.

parent 8ff7d87b
No related branches found
No related tags found
No related merge requests found
......@@ -158,6 +158,12 @@ function _onAction(payload) {
newCall.placeVoiceCall();
}
else if (payload.type === 'video') {
newCall.placeVideoCall(
payload.remote_element,
payload.local_element
);
}
else if (payload.type === 'screensharing') {
newCall.placeScreenSharingCall(
payload.remote_element,
payload.local_element
......
......@@ -69,10 +69,10 @@ module.exports = {
});
},
onVideoClick: function() {
onVideoClick: function(e) {
dis.dispatch({
action: 'place_call',
type: "video",
type: e.shiftKey ? "screensharing" : "video",
room_id: this.props.room.roomId
});
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment