diff --git a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/avatar-profile/avatar-profile.component.ts b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/avatar-profile/avatar-profile.component.ts index a45f1415..cfbfc952 100644 --- a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/avatar-profile/avatar-profile.component.ts +++ b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/avatar-profile/avatar-profile.component.ts @@ -1,4 +1,3 @@ -import { animate, style, transition, trigger } from '@angular/animations'; import { Component, Input } from '@angular/core'; /** @@ -8,19 +7,13 @@ import { Component, Input } from '@angular/core'; @Component({ selector: 'ov-avatar-profile', template: ` -
+
{{ letter }}
`, - styleUrls: ['./avatar-profile.component.css'], - animations: [ - trigger('posterAnimation', [ - transition(':enter', [style({ opacity: 0 }), animate('600ms', style({ opacity: 1 }))]) - // transition(':leave', [animate(600, style({ backgroundColor: 'yellow' }))]), - ]) - ] + styleUrls: ['./avatar-profile.component.css'] }) export class AvatarProfileComponent { letter: string; diff --git a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/stream/stream.component.html b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/stream/stream.component.html index 1e4b46cb..776e1be2 100644 --- a/openvidu-components-angular/projects/openvidu-angular/src/lib/components/stream/stream.component.html +++ b/openvidu-components-angular/projects/openvidu-angular/src/lib/components/stream/stream.component.html @@ -31,6 +31,7 @@