remove debug

main
Walter Hupfeld 2 months ago
parent ce1eddd4bb
commit 691aaa0bdd

@ -4,7 +4,7 @@
* Autor: Walter Hupfeld, Hamm * Autor: Walter Hupfeld, Hamm
* E-Mail: info@hupfeld-software.de * E-Mail: info@hupfeld-software.de
* Version: 3.0 * Version: 3.0
* Datum: 11.03.2024 * Datum: 12.03.2024
******************************** */ ******************************** */
// Starte die Session // Starte die Session
@ -451,7 +451,6 @@
var _URL = window.URL || window.webkitURL; var _URL = window.URL || window.webkitURL;
if ((file = this.files[0])) { if ((file = this.files[0])) {
var file = this.files[0]; var file = this.files[0];
console.log(file["size"]);
var fileType = file["type"]; var fileType = file["type"];
var validImageTypes = ["image/gif", "image/jpeg", "image/png"]; var validImageTypes = ["image/gif", "image/jpeg", "image/png"];
if ($.inArray(fileType, validImageTypes) < 0) { if ($.inArray(fileType, validImageTypes) < 0) {
@ -466,11 +465,10 @@
img.onload = function () { img.onload = function () {
image_ok = (this.width<4000 && this.height<4000 && this.width>100 && this.height>100); image_ok = (this.width<4000 && this.height<4000 && this.width>100 && this.height>100);
//console.log("Breite:" + this.width + " Höhe: " + this.height); //console.log("Breite:" + this.width + " Höhe: " + this.height);
/*
if (!image_ok) { if (!image_ok) {
alert("Bilder dürfen maximal 2000 x 2000 Pixel groß sein.\n" alert("Bilder sollten maximal 4000 x 4000 Pixel groß sein.\n"
+"Breite:" + this.width + " Höhe: " + this.height) +"Breite:" + this.width + " Höhe: " + this.height)
}*/ }
}; };
img.src = objectUrl; img.src = objectUrl;
} }

Loading…
Cancel
Save