diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-12-27 16:34:17 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-27 16:34:17 +0900 |
commit | 1fc44c783aec2f155307b2de484c204cf39cbff1 (patch) | |
tree | ce13510a788fa24bee29e84ca0397db30930611c /src/background/controllers | |
parent | 9c34b961c68588d95cc942465dae55388e861ffa (diff) | |
parent | d07b94140635bfe5dc53269ebec9f5ee9e133203 (diff) |
Merge pull request #511 from ueokande/open-startpage
Open homepage
Diffstat (limited to 'src/background/controllers')
-rw-r--r-- | src/background/controllers/operation.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/background/controllers/operation.js b/src/background/controllers/operation.js index 1339006..aea85fc 100644 --- a/src/background/controllers/operation.js +++ b/src/background/controllers/operation.js @@ -37,6 +37,8 @@ export default class OperationController { return this.operationInteractor.duplicate(); case operations.PAGE_SOURCE: return this.operationInteractor.openPageSource(); + case operations.PAGE_HOME: + return this.operationInteractor.openHome(operation.newTab); case operations.ZOOM_IN: return this.operationInteractor.zoomIn(); case operations.ZOOM_OUT: |