summaryrefslogtreecommitdiffstats
path: root/core/js/update.js
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2014-12-10 13:29:40 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-12-10 13:30:28 +0100
commit5c36b0bf5daaaa5e2283cec148e7901db2caa100 (patch)
tree606b4f058e27755580fe77ebf0397c8b3923a0ee /core/js/update.js
parent269ae49c1c5723031386ce5d706282acc7fef6da (diff)
downloadnextcloud-server-5c36b0bf5daaaa5e2283cec148e7901db2caa100.tar.gz
nextcloud-server-5c36b0bf5daaaa5e2283cec148e7901db2caa100.zip
improve update error page: remove box, make link visible, insert missing space, remove line break
Diffstat (limited to 'core/js/update.js')
-rw-r--r--core/js/update.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/core/js/update.js b/core/js/update.js
index e5ce322df95..4899335f0ec 100644
--- a/core/js/update.js
+++ b/core/js/update.js
@@ -47,9 +47,8 @@
updateEventSource.listen('failure', function(message) {
$('<span>').addClass('error').append(message).append('<br />').appendTo($el);
$('<span>')
- .addClass('error bold')
- .append('<br />')
- .append(t('core', 'The update was unsuccessful.' +
+ .addClass('bold')
+ .append(t('core', 'The update was unsuccessful. ' +
'Please report this issue to the ' +
'<a href="https://github.com/owncloud/core/issues" target="_blank">ownCloud community</a>.'))
.appendTo($el);