Feature: Shitpost Mode -> upload multiple files at once

This commit is contained in:
2026-05-13 05:49:11 +02:00
parent d85d8276ed
commit f613ae309e
21 changed files with 1463 additions and 539 deletions

View File

@@ -28,7 +28,7 @@ window.F0ckUpload = class {
const tagInput = this.form.querySelector('.tag-input');
if (tagInput) {
tagInput.addEventListener('keydown', (e) => {
if (e.key === 'Enter') {
if (e.key === 'Enter' && !e.ctrlKey && !e.metaKey) {
e.preventDefault();
this.addTag(tagInput.value);
tagInput.value = '';