mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 04:09:20 +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
|
||||
*/
|
||||
async function checkManonBirthday() {
|
||||
async function checkManonBirthday(force) {
|
||||
|
||||
// Manon's feature only
|
||||
if(userID() !== 150)
|
||||
return;
|
||||
|
||||
const date = new Date();
|
||||
if(force !== true) {
|
||||
// Manon's feature only
|
||||
if(userID() !== 150)
|
||||
return;
|
||||
|
||||
const date = new Date();
|
||||
|
||||
if(date.getMonth() != 4 && date.getDay() != 8)//TODO: replace
|
||||
return;
|
||||
if(date.getMonth() != 4 && date.getDay() != 8)//TODO: replace
|
||||
return;
|
||||
}
|
||||
|
||||
// Load clippy
|
||||
const css = document.createElement("link");
|
||||
|
Loading…
Reference in New Issue
Block a user