mirror of https://github.com/OpenVidu/openvidu.git
ov-components: subscribe to vc directives in constructor
parent
8185324a0a
commit
f785dfd7ad
|
@ -4,9 +4,7 @@ import {
|
||||||
Component,
|
Component,
|
||||||
ContentChild,
|
ContentChild,
|
||||||
EventEmitter,
|
EventEmitter,
|
||||||
Input,
|
|
||||||
OnDestroy,
|
OnDestroy,
|
||||||
OnInit,
|
|
||||||
Output,
|
Output,
|
||||||
TemplateRef,
|
TemplateRef,
|
||||||
ViewChild
|
ViewChild
|
||||||
|
@ -67,7 +65,7 @@ import { LangOption } from '../../models/lang.model';
|
||||||
])
|
])
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
export class VideoconferenceComponent implements OnInit, OnDestroy, AfterViewInit {
|
export class VideoconferenceComponent implements OnDestroy, AfterViewInit {
|
||||||
// *** Toolbar ***
|
// *** Toolbar ***
|
||||||
/**
|
/**
|
||||||
* @internal
|
* @internal
|
||||||
|
@ -384,9 +382,6 @@ export class VideoconferenceComponent implements OnInit, OnDestroy, AfterViewIni
|
||||||
private libService: OpenViduComponentsConfigService
|
private libService: OpenViduComponentsConfigService
|
||||||
) {
|
) {
|
||||||
this.log = this.loggerSrv.get('VideoconferenceComponent');
|
this.log = this.loggerSrv.get('VideoconferenceComponent');
|
||||||
}
|
|
||||||
|
|
||||||
ngOnInit() {
|
|
||||||
this.subscribeToVideconferenceDirectives();
|
this.subscribeToVideconferenceDirectives();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue