Commit 74568305 authored by Mark Harding's avatar Mark Harding

(feat): pass through default widescreen dimensions if not loaded metadata yet

No related merge requests found
Pipeline #86112166 passed with stages
in 47 minutes and 47 seconds
......@@ -37,7 +37,10 @@
<ng-container *ngIf="playerRef">
<i
*ngIf="!playerRef.isPlaying() && !playerRef.isLoading()"
*ngIf="
(!playerRef.isPlaying() && !playerRef.isLoading()) ||
(shouldPlayInModal && !playerRef.isPlaying())
"
class="material-icons minds-video-play-icon"
(click)="clickedVideo()"
>play_circle_outline</i
......
......@@ -139,8 +139,12 @@ export class MediaModalComponent implements OnInit, OnDestroy {
switch (this.entity.custom_type) {
case 'video':
this.contentType = 'video';
this.entity.width = this.entity.custom_data.dimensions.width;
this.entity.height = this.entity.custom_data.dimensions.height;
this.entity.width = this.entity.custom_data.dimensions
? this.entity.custom_data.dimensions.width
: 1280;
this.entity.height = this.entity.custom_data.dimensions
? this.entity.custom_data.dimensions.height
: 720;
this.entity.thumbnail_src = this.entity.custom_data.thumbnail_src;
break;
case 'batch':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment