mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 06:03:20 +00:00
Dummy data on default current_picture to avoid javascript errors
This commit is contained in:
parent
71602b43bd
commit
727e5cb199
@ -19,9 +19,21 @@ document.addEventListener("alpine:init", () => {
|
|||||||
identifications: [],
|
identifications: [],
|
||||||
/**
|
/**
|
||||||
* The currently displayed picture
|
* The currently displayed picture
|
||||||
|
* Default dummy data are pre-loaded to avoid javascript error
|
||||||
|
* when loading the page at the beginning
|
||||||
* @type Picture
|
* @type Picture
|
||||||
**/
|
**/
|
||||||
current_picture: undefined,
|
current_picture: {
|
||||||
|
is_moderated: true,
|
||||||
|
id: null,
|
||||||
|
name: "",
|
||||||
|
display_name: "",
|
||||||
|
compressed_url: "",
|
||||||
|
profile_url: "",
|
||||||
|
full_size_url: "",
|
||||||
|
owner: "",
|
||||||
|
date: new Date(),
|
||||||
|
},
|
||||||
/**
|
/**
|
||||||
* The picture which will be displayed next if the user press the "next" button
|
* The picture which will be displayed next if the user press the "next" button
|
||||||
* @type ?Picture
|
* @type ?Picture
|
||||||
|
Loading…
Reference in New Issue
Block a user