Redirect to stored tab if the route is not found

This commit is contained in:
Ken-Håvard Lieng 2017-05-19 08:36:13 +02:00
parent 2afbf2359c
commit 5487ecdb57
5 changed files with 62 additions and 19 deletions

View file

@ -1,10 +1,12 @@
import documentTitle from './documentTitle';
import handleSocket from './handleSocket';
import initialState from './initialState';
import storage from './storage';
export default function runModules(ctx) {
initialState(ctx);
documentTitle(ctx);
handleSocket(ctx);
storage(ctx);
}