This commit is contained in:
2020-06-09 23:31:00 +00:00
parent 4021f5a108
commit 25c9c2661e
10 changed files with 544 additions and 8 deletions

View File

@@ -238,6 +238,8 @@ app.shell = (function () {
page('/rfcaseEdit/:id', rfcaseEdit);
page('/rfsettings', rfsettings);
page('/ops', ops);
page('/trials', trials);
page('/trialEdit/:id', trialEdit);
page('*', notFound);
page({
hashbang: true
@@ -549,6 +551,25 @@ app.shell = (function () {
}
//case 3233
var trials = function (ctx) {
app.nav.setSelectedMenuItem('trials');
app.trials.configModule({
context: ctx
});
app.trials.initModule();
}
//case 3233
var trialEdit = function (ctx) {
app.nav.setSelectedMenuItem('trials');
app.trialEdit.configModule({
context: ctx
});
app.trialEdit.initModule();
}
var notFound = function (ctx) {
app.fourohfour.configModule({
context: ctx