File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -264,6 +264,7 @@ <h3 class="box-title">Can this tool work on a mobile browser?</h3>
264
264
alert ( 'Please upload a JPG file.' ) ;
265
265
return ;
266
266
}
267
+ showInProgress ( ) ;
267
268
const fileName = file . name . split ( '.' ) . slice ( 0 , - 1 ) . join ( '.' ) ;
268
269
269
270
// Read the file as a data URL
@@ -304,7 +305,6 @@ <h3 class="box-title">Can this tool work on a mobile browser?</h3>
304
305
$ ( document ) . ready ( function ( ) {
305
306
306
307
$ ( "#convert" ) . click ( function ( ) {
307
- showInProgress ( ) ;
308
308
convertToPDF ( ) ;
309
309
} ) ;
310
310
Original file line number Diff line number Diff line change @@ -242,14 +242,14 @@ <h3 class="box-title">Can this tool work on a mobile browser?</h3>
242
242
< script >
243
243
async function convertToPDF ( ) {
244
244
const { jsPDF } = window . jspdf ;
245
-
246
245
// Get the uploaded file
247
246
const input = document . getElementById ( 'myFile' ) ;
248
247
const file = input . files [ 0 ] ;
249
248
if ( ! file ) {
250
249
alert ( 'Please upload a WEBP file.' ) ;
251
250
return ;
252
251
}
252
+ showInProgress ( ) ;
253
253
const fileName = file . name . split ( '.' ) . slice ( 0 , - 1 ) . join ( '.' ) ;
254
254
255
255
// Read the file as a data URL
@@ -290,7 +290,6 @@ <h3 class="box-title">Can this tool work on a mobile browser?</h3>
290
290
$ ( document ) . ready ( function ( ) {
291
291
292
292
$ ( "#convert" ) . click ( function ( ) {
293
- showInProgress ( ) ;
294
293
convertToPDF ( ) ;
295
294
} ) ;
296
295
You can’t perform that action at this time.
0 commit comments