2016-03-29 12:34:10 +02:00

16 lines
361 B
JavaScript

'use strict';
class HelpController {
constructor(topNavigationController, helpView) {
this.topNavigationController = topNavigationController;
this.helpView = helpView;
}
showHelpRoute(section) {
this.topNavigationController.activate('help');
this.helpView.render(section);
}
}
module.exports = HelpController;