diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-07-28 22:51:58 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-07-28 23:34:26 +0900 |
commit | f914d76ce8fecb74bbddb673595c32000d0fa78f (patch) | |
tree | 3be96652b4fc8268620c3d7a2eb7b582f34b0646 /src/background/usecases | |
parent | ed2bd7d75ee1e7aa1db7d03c3f908c740ded1983 (diff) |
Fix error on keyword not found
Diffstat (limited to 'src/background/usecases')
-rw-r--r-- | src/background/usecases/link.js | 3 | ||||
-rw-r--r-- | src/background/usecases/operation.js | 6 |
2 files changed, 4 insertions, 5 deletions
diff --git a/src/background/usecases/link.js b/src/background/usecases/link.js index f9e474a..1339fdf 100644 --- a/src/background/usecases/link.js +++ b/src/background/usecases/link.js @@ -8,8 +8,7 @@ export default class LinkInteractor { } openToTab(url, tabId) { - this.tabPresenter.open(url, tabId); - + return this.tabPresenter.open(url, tabId); } async openNewTab(url, openerId, background) { diff --git a/src/background/usecases/operation.js b/src/background/usecases/operation.js index 86f39ca..7bf93e4 100644 --- a/src/background/usecases/operation.js +++ b/src/background/usecases/operation.js @@ -126,7 +126,7 @@ export default class OperationInteractor { async showCommand() { let tab = await this.tabPresenter.getCurrent(); - this.consolePresenter.showCommand(tab.id, ''); + return this.consolePresenter.showCommand(tab.id, ''); } async showOpenCommand(alter) { @@ -173,12 +173,12 @@ export default class OperationInteractor { async findStart() { let tab = await this.tabPresenter.getCurrent(); - this.consolePresenter.showFind(tab.id); + return this.consolePresenter.showFind(tab.id); } async hideConsole() { let tab = await this.tabPresenter.getCurrent(); - this.consolePresenter.hide(tab.id); + return this.consolePresenter.hide(tab.id); } onTabSelected(tabId) { |