This commit is contained in:
Michał 2023-04-01 16:59:46 +00:00
parent 95e5f3938f
commit ff1af6b888
4 changed files with 6 additions and 3 deletions

View file

@ -10,7 +10,7 @@ function loadOnView() {
let image = lazyLoad[i];
if (image.getBoundingClientRect().top < window.innerHeight && image.getBoundingClientRect().bottom > 0) {
if (!image.src) {
image.src = `/api/file/${image.getAttribute('data-src')}?r=thumb`
image.src = `/api/file/${image.getAttribute('data-src')}?r=thumb` // e=webp
}
}
}

View file

@ -109,6 +109,7 @@ function fileDropHandle(event) {
fileUpload.files = event.dataTransfer.files;
fileDefault();
fileChanged();
}
@ -197,8 +198,11 @@ document.addEventListener('DOMContentLoaded', function() {
fileDrop.addEventListener('dragleave', fileDefault, false);
// Drop file into box
fileDrop.addEventListener('drop', fileDropHandle, false);
// File upload change
fileUpload.addEventListener('change', fileChanged, false);
// File upload clicked
fileUpload.addEventListener('click', fileDefault, false);
// Submit form

View file

@ -200,7 +200,7 @@
<table>
<tr>
<td>Author</td>
<td><a href="{{ url_for('gallery.profile_id', user_id=image.author_id ) }}" class="link">{{ image.author_username }}</a></td>
<td><a href="{{ url_for('gallery.profile_id', user_id=image.author_id) }}" class="link">{{ image.author_username }}</a></td>
</tr>
<tr>
<td>Upload date</td>

View file

@ -13,7 +13,6 @@
{% endif %}
</div>
</div>
{% if images %}
<div class="gallery-grid">
{% for image in images %}