From 846a22e7a1db585f13399e9d3d7b7d12df1db9f3 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Wed, 11 Mar 2015 15:35:44 +0100 Subject: [PATCH] Don't use jQuery in the logout view script jQuery is not available here because JavaScript is loaded after the content. This was no problem before because the logout action was submitted using XHR and thus having JavaScript. refs #8626 --- application/views/scripts/authentication/logout.phtml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/application/views/scripts/authentication/logout.phtml b/application/views/scripts/authentication/logout.phtml index 3962493ea..6d704794f 100644 --- a/application/views/scripts/authentication/logout.phtml +++ b/application/views/scripts/authentication/logout.phtml @@ -18,7 +18,7 @@ ); ?> -
+
@@ -28,8 +28,8 @@ * before it is able to finish. This will cause the browser to show a new authentication prompt in the next * request. */ - $(document).ready(function() { - var msg = $('#logout-status'); + document.addEventListener('DOMContentLoaded', function () { + var msg = document.getElementById('logout-status'); try { if (navigator.userAgent.toLowerCase().indexOf('msie') !== -1) { document.execCommand('ClearAuthenticationCache'); @@ -41,8 +41,7 @@ } } catch (e) { } - msg.html('translate('Logout successful!'); ?>'); - msg.removeClass(); - msg.addClass('alert alert-success'); + msg.innerHTML = 'translate('Logout successful!'); ?>'; + msg.className = 'alert alert-success'; });