diff options
author | Teddy Wing | 2021-08-14 22:10:59 +0200 |
---|---|---|
committer | Teddy Wing | 2021-08-14 22:17:19 +0200 |
commit | 0a337c8b1bd6bd31785d89441bc1cd2ba3084ae4 (patch) | |
tree | 97fcec3a5d490d2fa108142449e8381a7c2829f8 | |
parent | 8a7cc75a035b58bcf12893132cc63e16f6069bff (diff) | |
download | netflix-immersive-0a337c8b1bd6bd31785d89441bc1cd2ba3084ae4.tar.bz2 |
Add notes about possibly obsolete code
-rw-r--r-- | netflix-immersive.user.js | 2 | ||||
-rw-r--r-- | src/controls.ts | 1 | ||||
-rw-r--r-- | src/watch_credits.ts | 3 |
3 files changed, 5 insertions, 1 deletions
diff --git a/netflix-immersive.user.js b/netflix-immersive.user.js index dcfdde6..08febe9 100644 --- a/netflix-immersive.user.js +++ b/netflix-immersive.user.js @@ -26,6 +26,7 @@ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var logger_1 = require("./logger"); +// 2021.08.14: This may be obsolete, replaced by `seamless.ts`. var controls = { // Hide playback controls. hide: function () { @@ -256,6 +257,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); var controls_1 = require("./controls"); var logger_1 = require("./logger"); var wait_element_1 = require("./wait_element"); +// 2021.08.14: This may be obsolete, replaced by `seamless.ts`. // Remove the "Watch Credits" button. function init_mutation_observer(controls_el) { var observer = new MutationObserver(function (mutation_list) { diff --git a/src/controls.ts b/src/controls.ts index 4e54c40..cc695fd 100644 --- a/src/controls.ts +++ b/src/controls.ts @@ -17,6 +17,7 @@ import logger from './logger'; +// 2021.08.14: This may be obsolete, replaced by `seamless.ts`. const controls = { // Hide playback controls. diff --git a/src/watch_credits.ts b/src/watch_credits.ts index f41844a..061cda1 100644 --- a/src/watch_credits.ts +++ b/src/watch_credits.ts @@ -1,4 +1,4 @@ -// Copyright (c) 2020 Teddy Wing +// Copyright (c) 2020–2021 Teddy Wing // // This file is part of Immersive. // @@ -19,6 +19,7 @@ import controls from './controls'; import logger from './logger'; import wait_element from './wait_element'; +// 2021.08.14: This may be obsolete, replaced by `seamless.ts`. // Remove the "Watch Credits" button. function init_mutation_observer (controls_el) { |