BuLi-Tipp Übersicht beendet, Galerie Debugged, Navbar Mobile Ansicht gefixt

This commit is contained in:
R40fendt
2025-10-25 17:36:34 +02:00
parent 3f02977a18
commit dc845e5da0
9 changed files with 146 additions and 74 deletions

View File

@@ -11,11 +11,12 @@ class User {
this.id=id;
}
hatgetippt():boolean{
let hatgetippt=false;
var hatgetippt=false;
$.ajax(RitzenbergenLib.api("/bulitipp/hatgetippt.php?userid="+this.id),{
async: false,
success(response:boolean){
hatgetippt=response;
success(response): any{
hatgetippt=response==1;
console.log(response);
}
});
return hatgetippt;