From 0ec5db65a7d356d1df617d096d5dc1dd2e76fb0e Mon Sep 17 00:00:00 2001 From: hmhealey Date: Thu, 3 Dec 2015 15:00:20 -0500 Subject: Fixed IE11 tabs preventing themselves from logging out --- web/templates/head.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'web/templates/head.html') diff --git a/web/templates/head.html b/web/templates/head.html index c425ef0b0..40e01a90d 100644 --- a/web/templates/head.html +++ b/web/templates/head.html @@ -57,7 +57,13 @@ $(function () { $(window).bind('storage', function (e) { - if (e.originalEvent.key === '__logout__') { + // when one tab on a browser logs out, it sets __logout__ in localStorage to trigger other tabs to log out + if (e.originalEvent.key === '__logout__' && e.originalEvent.storageArea === localStorage && e.originalEvent.newValue) { + // make sure it isn't this tab that is sending the logout signal (only necessary for IE11) + if (window.BrowserStore.isSignallingLogout(e.originalEvent.newValue)) { + return; + } + console.log('detected logout from a different tab'); window.location.href = '/' + window.mm_team.name; } -- cgit v1.2.3-1-g7c22