From f49c1039c4890a707287c0915693a7c1796fa4c5 Mon Sep 17 00:00:00 2001 From: Colin Hutchinson Date: Sat, 10 Oct 2015 14:14:01 -0400 Subject: [PATCH] refs #18241 Make the 'please reload this page' a clickable link --- core/js/update.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/js/update.js b/core/js/update.js index fd3c7a56bd..0f320c041f 100644 --- a/core/js/update.js +++ b/core/js/update.js @@ -47,7 +47,7 @@ updateEventSource.listen('error', function(message) { $('').addClass('error').append(message).append('
').appendTo($el); message = t('core', 'Please reload the page.'); - $('').addClass('error').append(message).append('
').appendTo($el); + $('').addClass('error').append(''+message+'
').appendTo($el); updateEventSource.close(); }); updateEventSource.listen('failure', function(message) {