19 lines
424 B
JavaScript
19 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;
|