New bootstrap-based layout #30

Sloučený
Roflin sloučil 79 commity z větve bootstrap do větve master před 2023-03-14 19:11:25 +01:00
Zobrazuji pouze změny commitu 0b0d47acb8 - Zobrazit všechny commity

Zobrazit soubor

@ -17,6 +17,14 @@ UploadQueue.prototype.addEvents = function() {
that.hideSpinner();
that.submit.disabled = false;
};
if (that.queue.files[0].name.includes(".HEIC")) {
alert('Sorry, the HEIC image format is not supported.\nPlease convert your photos to JPEG before uploading.');
that.hideSpinner();
that.submit.disabled = false;
break;
}
that.addPreviewBoxForQueueSlot(i);
that.addPreviewForFile(that.queue.files[i], i, callback);
};