aboutsummaryrefslogtreecommitdiff
path: root/src/content/index.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-09-17 12:55:43 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-09-17 12:55:43 +0900
commitac8f7e65dc90327e05fb30fd5b20d56c3799f3d8 (patch)
tree05cea028a87f067a83d02638f187b92b3ec6ecd9 /src/content/index.js
parente9863299abf9498c67660e8a97c70ddb090baffe (diff)
implement go-root command
Diffstat (limited to 'src/content/index.js')
-rw-r--r--src/content/index.js2
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);
}
};