Last active
December 10, 2015 22:29
-
-
Save mattd/4502387 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/section', | |
| 'collections/client/tab/section' | |
| ], function ( | |
| vent, | |
| ManageGroupsRouter, | |
| ManageLearnersRouter, | |
| ManageGroupsController, | |
| ManageLearnersController, | |
| ManageModuleLayout, | |
| SectionTabCollectionView, | |
| SectionTabCollection | |
| ) { | |
| "use strict"; | |
| return function (manageModule, app) { | |
| this.config.options.startWithParent = false; | |
| this.layout = new ManageModuleLayout(); | |
| this.addInitializer(function () { | |
| this.layout.on('render', function () { | |
| this.sectionNav.show( | |
| new SectionTabCollectionView({ | |
| collection: new SectionTabCollection([ | |
| {id: 'learners', text: 'Learners Tab'}, | |
| {id: 'groups', text: 'Groups Tab'} | |
| ]) | |
| }) | |
| ); | |
| }); | |
| this.config.app.canvas.show(this.layout); | |
| }); | |
| app.addInitializer(function () { | |
| new ManageGroupsRouter({ | |
| controller: new ManageGroupsController({ | |
| region: manageModule.layout.content | |
| }) | |
| }); | |
| new ManageLearnersRouter({ | |
| controller: new ManageLearnersController({ | |
| region: manageModule.layout.content | |
| }) | |
| }); | |
| }); | |
| }; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment