bug solved publications

This commit is contained in:
Eudes Inácio
2023-12-01 15:01:39 +01:00
parent 92edcf724c
commit e8d28c68e8
5 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -258,9 +258,9 @@
</div>
<div class="schedule-details">
<div class="description">
<p class="m-0" [innerHTML]="event.event.Subject">{{event.event.Subject}}</p>
<p class="m-0" [innerHTML]="event.event.Subject"></p>
</div>
<div class="location" [innerHTML]="event.event.Location">{{event.event.Location}}</div>
<div class="location" [innerHTML]="event.event.Location"></div>
<div class="font-13 calendar-owner"*ngIf="eventService.getCalendarOwnNameByCalendarId(event.event.CalendarId) == 'Meu calendario'">{{SessionStore.user.FullName}} </div>
<ng-template #other_content>{{eventService.getCalendarOwnNameByCalendarId(event.event.CalendarId)}}</ng-template>
</div>
@@ -68,7 +68,7 @@ export class ViewPublicationsPage implements OnInit {
private publicationVideoManagerService: PublicationVideoManagerService) {
this.publicationVideoManagerService.setContainer(this.VideoManager.nativeElement)
/* this.publicationVideoManagerService.setContainer(this.VideoManager.nativeElement) */
this.createPublicationList()
@@ -13,7 +13,7 @@
</button>
</div>
<div class="middle" (click)="openOptions()">
<p class="title" [innerHTML]="loadedEvent.Subject">{{loadedEvent.Subject}}</p>
<p class="title" [innerHTML]="loadedEvent.Subject"></p>
</div>
<div class="div-icon d-flex align-base">
@@ -54,7 +54,7 @@
<div class="upper-content">
<div class="content-location">
<span class="date" [innerHTML]="loadedEvent.Location">{{loadedEvent.Location}}</span>
<span class="date" [innerHTML]="loadedEvent.Location"></span>
<div *ngIf="loadedEvent.Organizer">
@@ -28,14 +28,14 @@
</div>
</ion-header>
<ion-content [scrollEvents]="true" (ionScroll)="onScroll($event)">
<ion-content>
<ion-refresher name="refresher" slot="fixed" (ionRefresh)="doRefresh($event)">
<ion-progress-bar type="indeterminate" *ngIf="showLoader"></ion-progress-bar>
<ion-refresher-content>
</ion-refresher-content>
</ion-refresher>
<div class="main-container px-20" *ngIf="publicationFolderService.FolderDetails[folderId]" class="VideoManager" #VideoManager>
<div class="main-container px-20" *ngIf="publicationFolderService.FolderDetails[folderId]" >
<p class="item-content-detail">{{publicationFolderService.FolderDetails[folderId].Detail}}</p>
@@ -62,7 +62,7 @@ export class ViewPublicationsPage implements OnInit {
setTimeout(()=> {
// console.log("this.VideoManager", this.VideoManager, document.querySelector('.VideoManager'))
this.publicationVideoManagerService.setContainer(this.VideoManager.nativeElement)
/* this.publicationVideoManagerService.setContainer(this.VideoManager.nativeElement) */
}, 2000)
// this.publicationVideoManagerService.setContainer(this.VideoManager.nativeElement)
@@ -75,7 +75,7 @@ export class ViewPublicationsPage implements OnInit {
console.log("nice to have", e)
if(!e) {
this.stopVideo()
/* this.stopVideo() */
}
}
ngOnInit() {