Sign in
vanadium
/
release.projects.browser
/
df9e1fe31efe45203dcbdbaa2b1d163233618228
/
.
/
browser
/
routes
/
help.js
blob: 714092f9be69e9e94a524040546242a044827dc5 [
file
] [
log
] [
blame
]
module
.
exports
=
function
(
routes
)
{
routes
.
addRoute
(
'/help'
,
handleHelpRoute
);
};
function
handleHelpRoute
(
state
)
{
// Set the page to help
state
.
navigation
.
pageKey
.
set
(
'help'
);
}