15 lines
361 B
JavaScript
15 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;
|