diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2021-03-16 22:40:26 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-16 22:40:26 +0900 |
commit | d8bbad8e1b774d6e46c7fa05324c90ce2b716a66 (patch) | |
tree | 4d4dd139b2e73bbaa5643e5b3bd6e123a6ce3e99 /src/content/Application.ts | |
parent | 1f2afb8c157aa601e7cbd46041c9bf063c63d982 (diff) | |
parent | 04ebd1e5331d29b2413c174ae0fe9d73566b3b8d (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.ts | 2 |
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); } }); |