This commit is contained in:
@@ -240,6 +240,7 @@ app.shell = (function () {
|
||||
page('/ops', ops);
|
||||
page('/trials', trials);
|
||||
page('/trialEdit/:id', trialEdit);
|
||||
page('/ravLicense/:id/:site_id', ravLicense);
|
||||
page('*', notFound);
|
||||
page({
|
||||
hashbang: true
|
||||
@@ -569,6 +570,22 @@ app.shell = (function () {
|
||||
app.trialEdit.initModule();
|
||||
}
|
||||
|
||||
var trialEdit = function (ctx) {
|
||||
app.nav.setSelectedMenuItem('trials');
|
||||
app.trialEdit.configModule({
|
||||
context: ctx
|
||||
});
|
||||
app.trialEdit.initModule();
|
||||
}
|
||||
|
||||
var ravLicense = function (ctx) {
|
||||
app.nav.setSelectedMenuItem('customers');
|
||||
app.ravLicense.configModule({
|
||||
context: ctx
|
||||
});
|
||||
app.ravLicense.initModule();
|
||||
}
|
||||
|
||||
|
||||
var notFound = function (ctx) {
|
||||
app.fourohfour.configModule({
|
||||
|
||||
Reference in New Issue
Block a user