szurubooru/static/js/controllers/help_controller.js
2016-03-29 12:34:10 +02:00

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;