Merge commit '2f5efee9c7f81cadc22f033f9ba20bb5cbc2d66e' into develop

This commit is contained in:
2025-11-24 14:41:10 +01:00
9 changed files with 12757 additions and 12 deletions
+5 -3
View File
@@ -12,7 +12,7 @@ function checkBoxes() {
}
});
if(isChecked){
if (isChecked) {
//Code to submit the video
var selectedCheckboxes = {};
checkboxes.forEach(function(checkbox){
@@ -59,6 +59,8 @@ function checkBoxes() {
}else{
alert('The given file is not compatible. These are the available types: [".mp4", ".mov", ".avi", ".mkv"].');
}
} else {
//language only english at the moment
alert('Please select at least one document type.');
@@ -111,11 +113,11 @@ function handleFiles(files) {
console.log("Error in script.js handleFiles function");
console.log(error);
}
}
//function to regulate the progress on the progressbar
function updateProgressBar(bar, value){
function updateProgressBar(bar, value) {
try {
value = Math.round(value);
bar.querySelector(".progress_fill").style.width = `${value}%`;