Skip to content

Commit

Permalink
#7 Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
exileDev committed Dec 19, 2022
1 parent 3ff972f commit a612bf7
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -4,12 +4,12 @@
{
<div class="video-gallery">
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsBeforeVideos, additionalData = Model })
<div class="video-thumbs">
@foreach (var video in Model.VideoModels)
{
<div class="video-thumbs">
<iframe class="thumb-item" src="@video.VideoUrl" width="@video.Width" height="@video.Height" frameborder="0" allow="@video.Allow"></iframe>
</div>
<iframe class="thumb-item" src="@video.VideoUrl" width="@video.Width" height="@video.Height" frameborder="0" allow="@video.Allow"></iframe>
}
</div>
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductDetailsAfterVideos, additionalData = Model })
</div>
}

0 comments on commit a612bf7

Please sign in to comment.