Created
January 8, 2013 20:55
-
-
Save mattd/4487827 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define([ | |
'vent', | |
'routers/manage/groups', | |
'routers/manage/learners', | |
'controllers/manage/groups', | |
'controllers/manage/learners', | |
'views/layouts/manage/module', | |
'views/tab/collection', | |
'collections/client/tab' | |
], function ( | |
vent, | |
ManageGroupsRouter, | |
ManageLearnersRouter, | |
ManageGroupsController, | |
ManageLearnersController, | |
ManageModuleLayout, | |
TabCollectionView, | |
TabCollection | |
) { | |
"use strict"; | |
return function (manageModule, app) { | |
this.config.options.startWithParent = false; | |
this.addInitializer(function () { | |
var layout = new ManageModuleLayout(); | |
layout.primaryNav.show( | |
new TabCollectionView({ | |
collection: new TabCollection([ | |
{id: 'learners', text: 'Learners Tab'}, | |
{id: 'groups', text: 'Groups Tab'} | |
]) | |
}) | |
); | |
this.config.app.canvas.show(layout); | |
vent.currentContentRegion = layout.content; | |
}); | |
app.addInitializer(function () { | |
new ManageGroupsRouter({ | |
controller: new ManageGroupsController() | |
}); | |
new ManageLearnersRouter({ | |
controller: new ManageLearnersController() | |
}); | |
}); | |
}; | |
}); |
mxriverlynn
commented
Jan 8, 2013
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment