This commit is contained in:
2018-07-27 17:45:07 +00:00
parent efe093ed74
commit 1b74f94b70
6 changed files with 133 additions and 3 deletions

View File

@@ -237,6 +237,7 @@ app.shell = (function () {
page('/rfcases', rfcases);
page('/rfcaseEdit/:id', rfcaseEdit);
page('/rfsettings', rfsettings);
page('/ops', ops);
page('*', notFound);
page({
hashbang: true
@@ -539,7 +540,13 @@ app.shell = (function () {
app.rfsettings.initModule();
}
var ops = function (ctx) {
app.nav.setSelectedMenuItem('ops');
app.ops.configModule({
context: ctx
});
app.ops.initModule();
}
var notFound = function (ctx) {