From bf414c15ee1a61c7d691a48a6bfb28f506f227b4 Mon Sep 17 00:00:00 2001 From: ansuz Date: Mon, 3 Jul 2017 12:26:08 +0200 Subject: [PATCH] fix logout button on home page --- customize.dist/main.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/customize.dist/main.js b/customize.dist/main.js index f2580bbe1..633f4c573 100644 --- a/customize.dist/main.js +++ b/customize.dist/main.js @@ -171,6 +171,10 @@ define([ $('button.gotodrive').click(function () { document.location.href = '/drive/'; }); + + $('button#loggedInLogout').click(function () { + $('#user-menu .logout').click(); + }); }; displayCreateButtons();