function startUploadForumPhoto(id){ $('#errDimension'+id).hide(); $('#errFormat'+id).hide(); $('#photosErr').html(''); $('#uploadPhotoNow').html(svgLoader); return true; } function stopUploadForumPhoto(file, filebig, success, id, width, height, label, filename){ i=label; //brak pliku lub etykiety if (success == 0){ if(label!=''){ $('#photosErr').html(label); } else { $('#'+id).parent('li').fadeOut(500, function(){$(this).remove()}); } } //wszystko ok if (success == 1){ $('#photos').append(''); $('.PhotosNew'+id).fadeIn(1000); $('#photosErr').html(''); } //nieprawidlowe rozmiary pliku if (success == 2){ $('#photosErr').html('
Nieprawidłowy rozmiar pliku: ' + width + 'x' + height + ' (max:1600x1200)
'); } //nieprawidlowy typ pliku if (success == 3){ $('#photosErr').html('
Nieprawidłowy typ pliku. Możesz dodać jedynie plik JPG z wagą do 1 MB.
'); } if (success == 4){ $('#photosErr').html('
Plik jest większy niż 1 MB. Zmniejsz wagę pliku i dodaj ponownie zdjęcie.
'); } $('#uploadPhotoNow').html(''); $('#filePhoto').val(''); return true; }