summaryrefslogtreecommitdiffstats
path: root/assets/js
diff options
context:
space:
mode:
authorWes van der Vleuten <16665772+WesVleuten@users.noreply.github.com>2022-11-08 23:19:27 +0100
committerWes van der Vleuten <16665772+WesVleuten@users.noreply.github.com>2022-11-08 23:19:27 +0100
commit5bcb5f3175247234c63e71ab3b35b7c3574a8fba (patch)
treed3db0e328f53fe930109d940e73d881517eb40f1 /assets/js
parentc95ee10d6915bd1bb42e8e81f85848f1ad7b6240 (diff)
downloadinvidious-5bcb5f3175247234c63e71ab3b35b7c3574a8fba.tar.gz
invidious-5bcb5f3175247234c63e71ab3b35b7c3574a8fba.tar.bz2
invidious-5bcb5f3175247234c63e71ab3b35b7c3574a8fba.zip
Removed console.log
Diffstat (limited to 'assets/js')
-rw-r--r--assets/js/watched_widget.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/assets/js/watched_widget.js b/assets/js/watched_widget.js
index ffcdaad8..fb4275a3 100644
--- a/assets/js/watched_widget.js
+++ b/assets/js/watched_widget.js
@@ -41,7 +41,6 @@ function get_all_video_times() {
}
var watchedIndicators = document.getElementsByClassName('watched-indicator');
-console.log('indicators', watchedIndicators.length);
for (var i = 0; i < watchedIndicators.length; i++) {
var indicator = watchedIndicators[i];
var watched_part = get_all_video_times()[indicator.getAttribute('data-id')];