0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-27 20:12:40 +00:00

Initial pass: reset divider position on log out

This commit is contained in:
G.Ambatte
2022-03-09 14:17:12 +13:00
parent 04cd53397a
commit 156e697042

View File

@@ -20,6 +20,9 @@ const Account = createClass({
handleLogout : function(){
if(confirm('Are you sure you want to log out?')) {
// Reset divider position
window.localStorage.removeItem('naturalcrit-pane-split');
// Clear login cookie
document.cookie = `nc_session=;expires=Thu, 01 Jan 1970 00:00:01 GMT;path=/;samesite=lax;${window.domain ? `domain=${window.domain}` : ''}`;
window.location = '/';
};