aboutsummaryrefslogtreecommitdiff
path: root/src/content/Application.ts
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2021-03-16 22:40:26 +0900
committerGitHub <noreply@github.com>2021-03-16 22:40:26 +0900
commitd8bbad8e1b774d6e46c7fa05324c90ce2b716a66 (patch)
tree4d4dd139b2e73bbaa5643e5b3bd6e123a6ce3e99 /src/content/Application.ts
parent1f2afb8c157aa601e7cbd46041c9bf063c63d982 (diff)
parent04ebd1e5331d29b2413c174ae0fe9d73566b3b8d (diff)
Merge pull request #1034 from ueokande/iframe-dynamic-resize
Iframe dynamic resize
Diffstat (limited to 'src/content/Application.ts')
-rw-r--r--src/content/Application.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/content/Application.ts b/src/content/Application.ts
index 996bbbc..7c8e588 100644
--- a/src/content/Application.ts
+++ b/src/content/Application.ts
@@ -107,6 +107,8 @@ export default class Application {
return this.navigateController.openLinkNext(msg);
case messages.NAVIGATE_LINK_PREV:
return this.navigateController.openLinkPrev(msg);
+ case messages.CONSOLE_RESIZE:
+ return this.consoleFrameController.resize(msg);
}
});