Merge branch 'cleanup' into 'master'

Remove forgotten console.log()

See merge request Ealhad/peertubeify!7
This commit is contained in:
Ealhad 2019-02-20 09:14:42 +00:00
commit 2bf4c7e682
1 changed files with 0 additions and 1 deletions

View File

@ -124,7 +124,6 @@ function removeVideoLink() {
const throttledPeertubeify = _.throttle(1000, peertubeify); const throttledPeertubeify = _.throttle(1000, peertubeify);
const observer = new MutationObserver(function(mutationsList) { const observer = new MutationObserver(function(mutationsList) {
for (const mutation of mutationsList) { for (const mutation of mutationsList) {
console.log('peertubeify ' + (mutation.target as Element).id)
if ((mutation.target as Element).id == 'video-element-wrapper') { if ((mutation.target as Element).id == 'video-element-wrapper') {
throttledPeertubeify(); throttledPeertubeify();
resumeManager.resume() resumeManager.resume()