implement go-root command

This commit is contained in:
Shin'ya Ueoka 2017-09-17 12:55:43 +09:00
parent e9863299ab
commit ac8f7e65dc
5 changed files with 10 additions and 1 deletions

View file

@ -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);
}
};