forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-05-14 15:18:33 +02:00
parent 691ca0e765
commit 9df87dc5c6
3 changed files with 3 additions and 3 deletions

View File

@ -79,7 +79,7 @@ Text 2
<tr>
<td>Video Files</td>
<td>https://files.catbox.moe/v4om92.mp4</td>
<td><video controls preload="none" class="vid"><source referrerpolicy="no-referrer" src="https://files.catbox.moe/v4om92.mp4" type="video/mp4"></video></td>
<td><video controls preload="none"><source referrerpolicy="no-referrer" src="https://files.catbox.moe/v4om92.mp4" type="video/mp4"></video></td>
</tr>
<tr>
<td>Emojis</td>

View File

@ -732,7 +732,7 @@
{% elif p.is_video %}
<div class="row no-gutters">
<div class="col">
<video controls preload="none" class="vid">
<video controls preload="none">
<source src="{{p.realurl(v)}}" type="video/mp4">
</video>
</div>

View File

@ -340,7 +340,7 @@
</div>
{% elif p.is_video %}
<div id="video-{{p.id}}" style="text-align: center" class="{% if p.over_18 or not ((v and v.cardview) or (not v and environ.get('CARD_VIEW') == '1')) %}d-none{% endif %} mt-4">
<video id="video2-{{p.id}}" controls preload="none" class="vid">
<video id="video2-{{p.id}}" controls preload="none">
<source src="{{p.realurl(v)}}" type="video/mp4">
</video>
</div>