X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/4aa539e5d93da275c6d882a864a735d5a23e98db..2725b77b04d8911518c9c82283fe878283398df8:/stage2/static/js/checkfile.js diff --git a/stage2/static/js/checkfile.js b/stage2/static/js/checkfile.js index 6d3782c..36afefc 100644 --- a/stage2/static/js/checkfile.js +++ b/stage2/static/js/checkfile.js @@ -14,10 +14,14 @@ $(function() { alert('Błędne rozszerzenie! Powinno być: ' + ext); ok = false; } + if (name.length > 100) { + alert('Za długa nazwa pliku! Maksymalna długość: 100 znaków (jest: ' + name.length + ')'); + ok = false; + } } var size = this.files[0].size; - if (size > 10 * 1024 * 1024) { - alert('Rozmiar pliku nie może przekraczać 10 MB!'); + if (size > 20 * 1024 * 1024) { + alert('Rozmiar pliku nie może przekraczać 20 MB!'); ok = false; } if (!ok) {