Skip to content

Commit d3135de

Browse files
committed
check file required
1 parent fdf39ef commit d3135de

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

jpg-to-pdf-converter.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,7 @@ <h3 class="box-title">Can this tool work on a mobile browser?</h3>
264264
alert('Please upload a JPG file.');
265265
return;
266266
}
267+
showInProgress();
267268
const fileName = file.name.split('.').slice(0, -1).join('.');
268269

269270
// Read the file as a data URL
@@ -304,7 +305,6 @@ <h3 class="box-title">Can this tool work on a mobile browser?</h3>
304305
$(document).ready(function () {
305306

306307
$("#convert").click(function () {
307-
showInProgress();
308308
convertToPDF();
309309
});
310310

webp-to-pdf-converter.html

+1-2
Original file line numberDiff line numberDiff line change
@@ -242,14 +242,14 @@ <h3 class="box-title">Can this tool work on a mobile browser?</h3>
242242
<script>
243243
async function convertToPDF() {
244244
const { jsPDF } = window.jspdf;
245-
246245
// Get the uploaded file
247246
const input = document.getElementById('myFile');
248247
const file = input.files[0];
249248
if (!file) {
250249
alert('Please upload a WEBP file.');
251250
return;
252251
}
252+
showInProgress();
253253
const fileName = file.name.split('.').slice(0, -1).join('.');
254254

255255
// Read the file as a data URL
@@ -290,7 +290,6 @@ <h3 class="box-title">Can this tool work on a mobile browser?</h3>
290290
$(document).ready(function () {
291291

292292
$("#convert").click(function () {
293-
showInProgress();
294293
convertToPDF();
295294
});
296295

0 commit comments

Comments
 (0)