diff options
author | Colin Hutchinson <chutchinson@freshbooks.com> | 2015-10-10 14:14:01 -0400 |
---|---|---|
committer | Colin Hutchinson <chutchinson@freshbooks.com> | 2015-10-10 14:14:01 -0400 |
commit | f49c1039c4890a707287c0915693a7c1796fa4c5 (patch) | |
tree | 000617702650799f2ab51ba9a463e972c77cb912 /core/js/update.js | |
parent | 188acd5e4e4bf9e35e327ecf8389c75ead744732 (diff) | |
download | nextcloud-server-f49c1039c4890a707287c0915693a7c1796fa4c5.tar.gz nextcloud-server-f49c1039c4890a707287c0915693a7c1796fa4c5.zip |
refs #18241 Make the 'please reload this page' a clickable link
Diffstat (limited to 'core/js/update.js')
-rw-r--r-- | core/js/update.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/update.js b/core/js/update.js index fd3c7a56bd6..0f320c041f1 100644 --- a/core/js/update.js +++ b/core/js/update.js @@ -47,7 +47,7 @@ updateEventSource.listen('error', function(message) { $('<span>').addClass('error').append(message).append('<br />').appendTo($el); message = t('core', 'Please reload the page.'); - $('<span>').addClass('error').append(message).append('<br />').appendTo($el); + $('<span>').addClass('error').append('<a href=".">'+message+'</a><br />').appendTo($el); updateEventSource.close(); }); updateEventSource.listen('failure', function(message) { |