]>
nmode's Git Repositories - Rnaught/blob - inst/app/www/script.js
30066d1fa15958304be32e760ce444655a2f3d88
1 $(document
).ready(() => {
3 $('[data-bs-toggle="tooltip"]').tooltip();
5 // Toggle the text in the bulk data help button.
6 $('#data-format-toggle').on('click', event
=> {
8 show_format
= 'Show required format';
9 btn
.text(btn
.text() === show_format
? 'Hide required format' : show_format
);
12 // Trigger the file selector via a custom button.
13 $('#data-upload-select').on('click', () => {
14 $('#data_upload').trigger('click');
17 // Display the name of the uploaded file.
18 $('#data_upload').on('change', event
=> {
19 $('#data-upload-name').attr('placeholder', event
.target
.files
[0].name
);