thedesk/app/js/login/logout.js

8 lines
180 B
JavaScript
Raw Normal View History

2018-01-28 21:22:43 +09:00
//ログアウトします
2019-05-19 16:39:30 +09:00
function logout() {
2020-07-12 03:49:48 +09:00
localStorage.removeItem(`acct_${acct_id}_at`)
localStorage.removeItem(`domain_${acct_id}`)
location.href = 'index.html'
todc()
}