This commit is contained in:
pro.boooooo 2023-03-09 15:01:50 +01:00
parent 2b1132fdf9
commit 80ffa81da5
3 changed files with 2 additions and 2 deletions

View File

@ -39,6 +39,7 @@ export default class Controller {
if(this.model.getTCat() != null) { if(this.model.getTCat() != null) {
this.getData(3).then() this.getData(3).then()
this.getData(this.model.getCurIndex()).then()
} else { } else {
this.getData(this.model.getCurIndex()).then() this.getData(this.model.getCurIndex()).then()
} }

View File

@ -3,7 +3,7 @@ import View from "./View.js"
import Model from "./Model.js" import Model from "./Model.js"
/** /**
* @return {{ Controller, Model, View }} * @return {{ controller: Controller, model: Model, view: View }}
* */ * */
export default function start() { export default function start() {
const view = new View() const view = new View()

View File

@ -3,7 +3,6 @@
loc { loc {
width: 100%; width: 100%;
height: 3vw; height: 3vw;
max-height: auto;
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;