mirror of
https://github.com/Nezumi-2711/javascript-training.git
synced 2026-09-22 13:38:43 +00:00
15 lines
322 B
JavaScript
15 lines
322 B
JavaScript
export default class HomeController {
|
|
constructor(service, view) {
|
|
this.service = service;
|
|
this.homeView = view.homeView;
|
|
}
|
|
|
|
init() {
|
|
if (this.homeView) {
|
|
this.homeView.handlerTabsTransfer();
|
|
this.homeView.addCommonEventPage();
|
|
this.homeView.addEventSelectCategoryDialog();
|
|
}
|
|
}
|
|
}
|