Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2013-11-27 20:01:21 +0400
committerBjoern Schiessle <schiessle@owncloud.com>2013-11-27 20:01:21 +0400
commit1536c7ea586be3f94bfc149fbb2c0c94ea1dbddc (patch)
tree3b627661856ffcaee5f2dcd63676146743f1f628 /apps/files_encryption/js
parent1065c3354326149022eaffe50c86c94ac226b620 (diff)
switch from "name" attribute to "id"
Diffstat (limited to 'apps/files_encryption/js')
-rw-r--r--apps/files_encryption/js/detect-migration.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_encryption/js/detect-migration.js b/apps/files_encryption/js/detect-migration.js
index 2cf6a61d145..e726515abc2 100644
--- a/apps/files_encryption/js/detect-migration.js
+++ b/apps/files_encryption/js/detect-migration.js
@@ -19,8 +19,8 @@ $(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-dark-small.gif') + '"/> ' + message);
- $('p[name="message"]').removeClass('hidden').addClass('info');
+ $('p[id="message"]').html('<img src="' + OC.imagePath('core', 'loading-dark-small.gif') + '"/> ' + message);
+ $('p[id="message"]').removeClass('hidden').addClass('info');
}
}
});