From cb33ceb97c46c1622fa6a5461d60e55b011117bd Mon Sep 17 00:00:00 2001 From: Booteille Date: Tue, 19 Feb 2019 21:42:33 +0100 Subject: [PATCH] Remove forgotten console.log() --- src/peertube.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/peertube.ts b/src/peertube.ts index b525579..730d035 100644 --- a/src/peertube.ts +++ b/src/peertube.ts @@ -124,7 +124,6 @@ function removeVideoLink() { const throttledPeertubeify = _.throttle(1000, peertubeify); const observer = new MutationObserver(function(mutationsList) { for (const mutation of mutationsList) { - console.log('peertubeify ' + (mutation.target as Element).id) if ((mutation.target as Element).id == 'video-element-wrapper') { throttledPeertubeify(); resumeManager.resume()