diff options
Diffstat (limited to 'src/content/index.js')
-rw-r--r-- | src/content/index.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/content/index.js b/src/content/index.js index 4751cde..a9ccd63 100644 --- a/src/content/index.js +++ b/src/content/index.js @@ -45,6 +45,8 @@ const execOperation = (operation) => { return navigates.linkNext(window); case operations.NAVIGATE_PARENT: return navigates.parent(window); + case operations.NAVIGATE_ROOT: + return navigates.root(window); } }; |