aboutsummaryrefslogtreecommitdiff
path: root/src/content/index.ts
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-05-19 09:34:40 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2019-05-19 09:34:40 +0900
commit4be04628e19392d8da9688d538cc3374e91005d8 (patch)
tree5c2299f6b85bf96dc9df65ddd7c27aef01b0ed69 /src/content/index.ts
parente0c4182f14f908d13c8c814c7bc2b48a1791f881 (diff)
Remove unused components
Diffstat (limited to 'src/content/index.ts')
-rw-r--r--src/content/index.ts9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/content/index.ts b/src/content/index.ts
index 08bdf6b..06bb34f 100644
--- a/src/content/index.ts
+++ b/src/content/index.ts
@@ -1,8 +1,5 @@
-// import TopContentComponent from './components/top-content';
-// import FrameContentComponent from './components/frame-content';
import * as consoleFrames from './console-frames';
import consoleFrameStyle from './site-style';
-// import { newStore } from './store';
import MessageListener from './MessageListener';
import FindController from './controllers/FindController';
import MarkController from './controllers/MarkController';
@@ -18,12 +15,8 @@ import * as blacklists from '../shared/blacklists';
import MarkKeyController from './controllers/MarkKeyController';
import AddonEnabledController from './controllers/AddonEnabledController';
-// const store = newStore();
-
let listener = new MessageListener();
if (window.self === window.top) {
- // new TopContentComponent(window, store); // eslint-disable-line no-new
-
let findController = new FindController();
let followMasterController = new FollowMasterController();
@@ -63,8 +56,6 @@ if (window.self === window.top) {
});
consoleFrames.initialize(window.document);
-} else {
- // new FrameContentComponent(window, store); // eslint-disable-line no-new
}
let followSlaveController = new FollowSlaveController();