mirror of
https://gitlab.rlp.net/proj-wise2526-video2document/video2document.git
synced 2026-06-15 18:01:52 +02:00
Implemented the function for the download button.
This commit is contained in:
@@ -105,7 +105,6 @@ function changeLanguage(language) {
|
||||
function handleFiles(files) {
|
||||
try {
|
||||
if (files.length > 0) {
|
||||
document.getElementById("progressbar").style.visibility = "visible";
|
||||
const file = files[0];
|
||||
if (file.type.startsWith('video/')) {
|
||||
const filePath = window.explorer.onFileDrop(files[0])
|
||||
@@ -330,3 +329,10 @@ function sendSpeakerPackages(){
|
||||
}
|
||||
}
|
||||
|
||||
function fileDownload(){
|
||||
try {
|
||||
window.file_download.fileDownload();
|
||||
} catch (error) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user