🚨 Fixed linter errors

This commit is contained in:
Mawoka
2022-09-18 19:43:34 +02:00
parent 7abd7bada0
commit f4d7659772
2 changed files with 6 additions and 2 deletions
+3 -1
View File
@@ -81,7 +81,9 @@
circular_prgoress =
1 -
((100 / quiz_data.questions[selected_question].time) * parseInt(timer_res)) / 100;
} catch {}
} catch {
circular_prgoress = 0;
}
}
</script>
+3 -1
View File
@@ -71,7 +71,9 @@
$: {
try {
circular_prgoress = 1 - ((100 / question.time) * parseInt(timer_res)) / 100;
} catch {}
} catch {
circular_prgoress = 0;
}
}
</script>