forgot a +
This commit is contained in:
parent
2ec1519568
commit
8c19835327
@ -19,7 +19,7 @@ export function getCookie(key){
|
||||
* @param key cookie name
|
||||
*/
|
||||
export function setCookie(key, value){
|
||||
cookie = key + "=" + value ";"
|
||||
cookie = key + "=" + value + ";";
|
||||
document.cookie = cookie;
|
||||
// Here we can apreciate the stupidity of Javascript :/
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user