aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/ui.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/js/ui.js')
-rw-r--r--src/js/ui.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/js/ui.js b/src/js/ui.js
index 80ec587e..44f1a367 100644
--- a/src/js/ui.js
+++ b/src/js/ui.js
@@ -153,7 +153,10 @@ const ui = {
// Check if media is loading
checkLoading(event) {
- this.loading = ['stalled', 'waiting'].includes(event.type);
+ this.loading = [
+ 'stalled',
+ 'waiting',
+ ].includes(event.type);
// Clear timer
clearTimeout(this.timers.loading);