mirror of
https://github.com/vector-im/element-web.git
synced 2024-12-02 17:36:44 +08:00
Make private
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
56b15edc58
commit
33fd09d777
@ -66,7 +66,7 @@ export default class VideoFeed extends React.Component<IProps, IState> {
|
|||||||
this.playMedia();
|
this.playMedia();
|
||||||
}
|
}
|
||||||
|
|
||||||
playMedia() {
|
private playMedia() {
|
||||||
const audioOutput = CallMediaHandler.getAudioOutput();
|
const audioOutput = CallMediaHandler.getAudioOutput();
|
||||||
const currentMedia = this.getCurrentMedia();
|
const currentMedia = this.getCurrentMedia();
|
||||||
|
|
||||||
@ -117,11 +117,11 @@ export default class VideoFeed extends React.Component<IProps, IState> {
|
|||||||
// seem to be necessary - Šimon
|
// seem to be necessary - Šimon
|
||||||
}
|
}
|
||||||
|
|
||||||
getCurrentMedia() {
|
private getCurrentMedia() {
|
||||||
return this.audio.current || this.video.current;
|
return this.audio.current || this.video.current;
|
||||||
}
|
}
|
||||||
|
|
||||||
onNewStream = () => {
|
private onNewStream = () => {
|
||||||
this.setState({
|
this.setState({
|
||||||
audioMuted: this.props.feed.isAudioMuted(),
|
audioMuted: this.props.feed.isAudioMuted(),
|
||||||
videoMuted: this.props.feed.isVideoMuted(),
|
videoMuted: this.props.feed.isVideoMuted(),
|
||||||
@ -129,7 +129,7 @@ export default class VideoFeed extends React.Component<IProps, IState> {
|
|||||||
this.playMedia();
|
this.playMedia();
|
||||||
}
|
}
|
||||||
|
|
||||||
onResize = (e) => {
|
private onResize = (e) => {
|
||||||
if (this.props.onResize && !this.props.feed.isLocal()) {
|
if (this.props.onResize && !this.props.feed.isLocal()) {
|
||||||
this.props.onResize(e);
|
this.props.onResize(e);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user