1
0
Fork 0
mirror of https://github.com/24eme/signaturepdf synced 2024-05-17 21:26:34 +02:00

metadata: delete max upload size control

This commit is contained in:
Vincent LAURENT 2023-04-20 14:36:09 +02:00
parent 75434aee71
commit 6cc0461975
2 changed files with 0 additions and 8 deletions

View file

@ -355,8 +355,6 @@ $f3->route('POST /organize',
$f3->route('GET /metadata',
function($f3) {
$f3->set('maxSize', min(array(convertPHPSizeToBytes(ini_get('post_max_size')), convertPHPSizeToBytes(ini_get('upload_max_filesize')))));
echo View::instance()->render('metadata.html.php');
}
);

View file

@ -177,12 +177,6 @@ var pageUpload = async function() {
document.getElementById('input_pdf_upload').focus();
const cache = await caches.open('pdf');
document.getElementById('input_pdf_upload').addEventListener('change', async function(event) {
if(document.getElementById('input_pdf_upload').files[0].size > maxSize) {
alert("Le PDF ne doit pas dépasser " + Math.round(maxSize/1024/1024) + " Mo");
document.getElementById('input_pdf_upload').value = "";
return;
}
let filename = document.getElementById('input_pdf_upload').files[0].name;
let response = new Response(document.getElementById('input_pdf_upload').files[0], { "status" : 200, "statusText" : "OK" });
let urlPdf = '/pdf/'+filename;