зеркало из https://github.com/mozilla/send.git
Prevent download button from being clicked multiple times
This commit is contained in:
Родитель
80db158ee3
Коммит
2f9372e8e0
|
@ -42,6 +42,9 @@ $(document).ready(function() {
|
|||
});
|
||||
$('#download-btn').click(download);
|
||||
function download() {
|
||||
// Disable the download button to avoid accidental double clicks.
|
||||
$('#download-btn').attr('disabled', 'disabled');
|
||||
|
||||
storage.totalDownloads += 1;
|
||||
|
||||
const fileReceiver = new FileReceiver();
|
||||
|
|
Загрузка…
Ссылка в новой задаче