Skip to content
Snippets Groups Projects
Commit 1536c7ea authored by Björn Schießle's avatar Björn Schießle
Browse files

switch from "name" attribute to "id"

parent 1065c335
Branches
No related tags found
No related merge requests found
......@@ -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');
}
}
});
......
......@@ -18,7 +18,7 @@
<small><?php p($l->t('Please contact your administrator.')); ?></small>
</div>
<?php endif; ?>
<p name="message" class="hidden">
<p id="message" class="hidden">
</p>
<p class="infield grouptop">
<input type="text" name="user" id="user" placeholder=""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment