1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-17 16:18:13 +09:00
hotomoe/src/web/app/common/scripts/signout.ts

8 lines
195 B
TypeScript
Raw Normal View History

declare const _HOST_: string;
2017-02-22 04:19:53 +09:00
2017-03-18 20:05:11 +09:00
export default () => {
2017-02-18 13:13:43 +09:00
localStorage.removeItem('me');
document.cookie = `i=; domain=.${_HOST_}; expires=Thu, 01 Jan 1970 00:00:01 GMT;`;
2017-02-18 13:13:43 +09:00
location.href = '/';
};