mirror of https://github.com/OpenVidu/openvidu.git
openvidu-components: Added logo directive allowing load default logo
parent
c6e84cb5da
commit
b5a0ab434a
|
@ -1,7 +1,7 @@
|
|||
<mat-toolbar id="toolbar" role="heading" fxLayout fxLayoutAlign="center" fxLayoutGap="10px">
|
||||
<div fxFlex="20%" fxLayoutAlign="start center">
|
||||
<div id="img-container">
|
||||
<img *ngIf="!isMinimal && showLogo" id="branding-logo" src="assets/images/ov_company_logo.png" ovImage />
|
||||
<img *ngIf="!isMinimal && showLogo" id="branding-logo" src="assets/images/logo.png" ovLogo />
|
||||
<span id="session-title" *ngIf="!isMinimal && session && session.sessionId && showSessionName">{{ session.sessionId }}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -81,7 +81,6 @@ export class VideoconferenceComponent implements OnInit, AfterViewInit {
|
|||
// Event sent when session has been created
|
||||
@Output() onSessionCreated = new EventEmitter<any>();
|
||||
|
||||
|
||||
joinSessionClicked: boolean = false;
|
||||
// closeClicked: boolean = false;
|
||||
isSessionAlive: boolean = false;
|
||||
|
|
|
@ -11,7 +11,8 @@ import {
|
|||
ToolbarParticipantsPanelButtonDirective,
|
||||
ToolbarChatPanelButtonDirective,
|
||||
ToolbarDisplaySessionNameDirective,
|
||||
ToolbarDisplayLogoDirective
|
||||
ToolbarDisplayLogoDirective,
|
||||
LogoDirective
|
||||
} from './toolbar.directive';
|
||||
import { AudioMutedDirective, MinimalDirective, VideoMutedDirective } from './videoconference.directive';
|
||||
|
||||
|
@ -30,6 +31,7 @@ import { AudioMutedDirective, MinimalDirective, VideoMutedDirective } from './vi
|
|||
StreamDisplayParticipantNameDirective,
|
||||
StreamDisplayAudioDetectionDirective,
|
||||
StreamSettingsButtonDirective,
|
||||
LogoDirective
|
||||
],
|
||||
exports: [
|
||||
MinimalDirective,
|
||||
|
@ -44,7 +46,8 @@ import { AudioMutedDirective, MinimalDirective, VideoMutedDirective } from './vi
|
|||
ToolbarDisplayLogoDirective,
|
||||
StreamDisplayParticipantNameDirective,
|
||||
StreamDisplayAudioDetectionDirective,
|
||||
StreamSettingsButtonDirective
|
||||
StreamSettingsButtonDirective,
|
||||
LogoDirective
|
||||
]
|
||||
})
|
||||
export class ApiDirectiveModule {}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2,7 +2,6 @@ import { NgModule } from '@angular/core';
|
|||
import {
|
||||
ChatPanelDirective,
|
||||
LayoutDirective,
|
||||
OvImageDirective,
|
||||
PanelDirective,
|
||||
ParticipantPanelItemDirective,
|
||||
ParticipantsPanelDirective,
|
||||
|
@ -14,7 +13,6 @@ import {
|
|||
declarations: [
|
||||
ChatPanelDirective,
|
||||
LayoutDirective,
|
||||
OvImageDirective,
|
||||
PanelDirective,
|
||||
ParticipantPanelItemDirective,
|
||||
ParticipantsPanelDirective,
|
||||
|
@ -24,7 +22,6 @@ import {
|
|||
exports: [
|
||||
ChatPanelDirective,
|
||||
LayoutDirective,
|
||||
OvImageDirective,
|
||||
PanelDirective,
|
||||
ParticipantPanelItemDirective,
|
||||
ParticipantsPanelDirective,
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue