1
0
forked from PGL/Clyde

adding set cookie and set lang (#68)

simple set cookie (je deteste javascript) et un setlang pour le syntastic sugar

Reviewed-on: PGL/Clyde#68
Reviewed-by: Maxime <231026@umons.ac.be>
Reviewed-by: Wal <karpinskiwal@gmail.com>
Co-authored-by: Anthony Debucquoy <debucquoy.anthony@gmail.com>
Co-committed-by: Anthony Debucquoy <debucquoy.anthony@gmail.com>
This commit is contained in:
2024-03-08 11:23:32 +01:00
committed by Debucquoy Anthony
parent b42324987b
commit e69ece23d0
2 changed files with 16 additions and 7 deletions

View File

@ -2,7 +2,7 @@
* Return the content of a cookie with specified key
* @param key cookie name
*/
function getCookie(key){
export function getCookie(key){
key = key + "="
let cookies = decodeURIComponent(document.cookie).split(";");
for (let el of cookies) {
@ -14,4 +14,12 @@ function getCookie(key){
return "";
}
export {getCookie};
/**
* Return the content of a cookie with specified key
* @param key cookie name
*/
export function setCookie(key, value){
cookie = key + "=" + value + ";";
document.cookie = cookie;
// Here we can apreciate the stupidity of Javascript :/
}