23 lines
352 B
JavaScript
23 lines
352 B
JavaScript
import {lang} from '../../index.js'
|
|
|
|
export default class {
|
|
constructor(params, titleKey) {
|
|
this.params = params;
|
|
this.titleKey = titleKey;
|
|
}
|
|
|
|
async postInit() {
|
|
}
|
|
|
|
async leavePage() {
|
|
}
|
|
|
|
setTitle() {
|
|
document.title = lang.get(this.titleKey, 'Bozo Pong');
|
|
}
|
|
|
|
async getHtml() {
|
|
return "";
|
|
}
|
|
}
|