mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 12:09:21 +00:00
Can force message to appear
This commit is contained in:
parent
e5db80c2c6
commit
93ff4e9049
@ -7,16 +7,18 @@
|
|||||||
/**
|
/**
|
||||||
* Check if it is Manon's birthday
|
* Check if it is Manon's birthday
|
||||||
*/
|
*/
|
||||||
async function checkManonBirthday() {
|
async function checkManonBirthday(force) {
|
||||||
|
|
||||||
// Manon's feature only
|
if(force !== true) {
|
||||||
if(userID() !== 150)
|
// Manon's feature only
|
||||||
return;
|
if(userID() !== 150)
|
||||||
|
return;
|
||||||
const date = new Date();
|
|
||||||
|
const date = new Date();
|
||||||
|
|
||||||
if(date.getMonth() != 4 && date.getDay() != 8)//TODO: replace
|
if(date.getMonth() != 4 && date.getDay() != 8)//TODO: replace
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Load clippy
|
// Load clippy
|
||||||
const css = document.createElement("link");
|
const css = document.createElement("link");
|
||||||
|
Loading…
Reference in New Issue
Block a user