ft_transcendence/frontend/static/js/views/AbstractView.js

21 lines
280 B
JavaScript
Raw Normal View History

2023-11-21 13:15:16 -05:00
export default class {
2023-11-30 07:05:46 -05:00
constructor(params, title) {
2023-11-21 13:15:16 -05:00
this.params = params;
2023-11-30 07:05:46 -05:00
this.title = title;
2023-11-21 13:15:16 -05:00
}
async postInit() {
}
2023-11-27 15:59:41 -05:00
async leavePage() {
}
2023-11-30 07:05:46 -05:00
setTitle() {
document.title = this.title;
2023-11-21 13:15:16 -05:00
}
async getHtml() {
return "";
}
}