gallery.accords-library.com/static/js/controllers/help_controller.js

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;