mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-22 07:08:02 -05:00
Really delete the cookie
It appears that setting the domain on the cookie prevents it from actually deleting the cookie.
This commit is contained in:
parent
f9b85c7884
commit
70cef7335b
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ const jar = require('./lib/jar');
|
|||
} else {
|
||||
// delete the old cookie (just hostname) by setting it to null and expiring in the past
|
||||
/* eslint-disable max-len */
|
||||
document.cookie = `scratchlanguage=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/; domain=${window.location.hostname}`;
|
||||
document.cookie = `scratchlanguage=;expires=Thu, 01 Jan 1970 00:00:00 GMT;path=/`;
|
||||
/* eslint-enable max-len */
|
||||
// create the new cookie
|
||||
let opts = {};
|
||||
|
|
Loading…
Reference in a new issue