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

20 lines
424 B
JavaScript

'use strict';
class HomeController {
constructor(topNavigationController, homeView) {
this.topNavigationController = topNavigationController;
this.homeView = homeView;
}
indexRoute() {
this.topNavigationController.activate('home');
this.homeView.render();
}
notFoundRoute() {
this.topNavigationController.activate('');
}
}
module.exports = HomeController;