remotes/1693045480750635534/spooky-22
Aevann1 2021-09-17 13:40:25 +02:00
parent c9c207ed1f
commit d38ef4f6f4
5 changed files with 24 additions and 23 deletions

View File

@ -1,5 +1,7 @@
<script src='/assets/js/bundle.js'></script>
<div class="d-none" id="awards">{{awards}}</div>
<input type="hidden" id="awardTarget" value="" />
<div class="modal fade" id="awardModal" tabindex="-1" role="dialog" aria-labelledby="awardModalTitle" aria-hidden="true">
</div>

View File

@ -9,7 +9,6 @@
{% set ups=c.upvotes %}
{% set downs=c.downvotes %}
{% set score=ups-downs %}
{% include "emoji_modal.html" %}
{% if v and v.shadowbanned %}
{% set replies=c.replies3 %}
@ -527,4 +526,12 @@
</div>
</div>
{% if v %}
{% include "gif_modal.html" %}
{% include "emoji_modal.html" %}
{% include "award_modal.html" %}
{% include "delete_comment_modal.html" %}
{% endif %}
{% include "expanded_image_modal.html" %}
{% include "flag_comment_modal.html" %}
</body>

View File

@ -1297,7 +1297,7 @@
</div>
{% block mobilenavbar %}
{% include "mobile_navigation_bar.html" %}
{% include "mobile_navigation_bar.html" %}
{% endblock %}
{% block actionsModal %}
@ -1337,17 +1337,6 @@
</div>
</div>
{% if v %}
{% include "award_modal.html" %}
{% include "flag_post_modal.html" %}
{% include "flag_comment_modal.html" %}
{% include "gif_modal.html" %}
{% include "delete_comment_modal.html" %}
{% include "delete_post_modal.html" %}
{% endif %}
{% include "expanded_image_modal.html" %}
<script src="/assets/js/general26.js"></script>
<!-- ClipboardJS -->

View File

@ -669,7 +669,7 @@
{% if p.replies %}
<div class="comment-section">
{% with comments=p.replies %}
{% include "comments.html" %}
{% include "comments.html" %}
{% endwith %}
</div>
{% elif not p.replies and p.deleted_utc == 0 %}
@ -692,11 +692,9 @@
</div>
{% if v and v.id==p.author_id %}
{% include "delete_post_modal.html" %}
{% include "delete_post_modal.html" %}
{% endif %}
{% include "delete_comment_modal.html" %}
{% endblock %}
@ -709,8 +707,8 @@
{% endblock %}
{% block GIFpicker %}
{% if v %}
{% include "gif_modal.html" %}
{% include "emoji_modal.html" %}
{% endif %}
{% endblock %}
{% if v %}
{% include "award_modal.html" %}
{% endif %}
{% include "expanded_image_modal.html" %}
{% endblock %}

View File

@ -496,4 +496,9 @@
{% endfor %}
{% include "delete_post_modal.html" %}
{% if v %}
{% include "award_modal.html" %}
{% include "delete_post_modal.html" %}
{% endif %}
{% include "expanded_image_modal.html" %}
{% include "flag_post_modal.html" %}