This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user