summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2013-11-26 17:14:16 +0100
committerBjoern Schiessle <schiessle@owncloud.com>2013-11-26 17:14:16 +0100
commitc7e1fe50c23771995bebf218c18deaf12ba628ca (patch)
tree6405717252f94d5f48161b70f0f98106bfdea255 /apps
parent0617e06f69bdfbfb71733b5c4dcc1532b0823a51 (diff)
downloadnextcloud-server-c7e1fe50c23771995bebf218c18deaf12ba628ca.tar.gz
nextcloud-server-c7e1fe50c23771995bebf218c18deaf12ba628ca.zip
added a small version of the dark loading gif, looks nicer on the blue background
Diffstat (limited to 'apps')
-rw-r--r--apps/files_encryption/js/detect-migration.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/js/detect-migration.js b/apps/files_encryption/js/detect-migration.js
index 2ee105cbfaf..2cf6a61d145 100644
--- a/apps/files_encryption/js/detect-migration.js
+++ b/apps/files_encryption/js/detect-migration.js
@@ -19,7 +19,7 @@ $(document).ready(function(){
success: function(response) {
if (response.data.migrationCompleted === false) {
var message = t('files_encryption', 'Initial encryption started... This can take some time. Please wait.');
- $('p[name="message"]').html('<img src="' + OC.imagePath('core', 'loading-small.gif') + '"/> ' + message);
+ $('p[name="message"]').html('<img src="' + OC.imagePath('core', 'loading-dark-small.gif') + '"/> ' + message);
$('p[name="message"]').removeClass('hidden').addClass('info');
}
}