diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2013-11-27 22:36:47 +0100 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2013-11-27 22:36:47 +0100 |
commit | 0219b8b3b95ba3b346107531721bea61a0c242da (patch) | |
tree | 9b90e041a741001121805e69ac786005d4a9c1a0 /apps/files_encryption/js | |
parent | e0924a5f070b7a22d57cebdc6379e385643ca400 (diff) | |
download | nextcloud-server-0219b8b3b95ba3b346107531721bea61a0c242da.tar.gz nextcloud-server-0219b8b3b95ba3b346107531721bea61a0c242da.zip |
add spinner to the template so that it can be loaded in time
Diffstat (limited to 'apps/files_encryption/js')
-rw-r--r-- | apps/files_encryption/js/detect-migration.js | 2 |
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 dea723ff25f..e70159933c4 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[id="message"]').html('<img src="' + OC.imagePath('core', 'loading-dark.gif') + '"/> ' + message); + $('span[id="messageText"]').text(message); $('p[id="message"]').removeClass('hidden').addClass('info'); } } |