Merge pull request #5960 from owncloud/enc_small_visual_improvements

[encryption] some small visual improvements
This commit is contained in:
Vincent Petry 2013-11-25 02:12:31 -08:00
commit de2b444030
1 changed files with 5 additions and 5 deletions

View File

@ -261,8 +261,9 @@ OC.Encryption = {
OC.Encryption.msg={
startDecrypting:function(selector){
var spinner = '<img src="'+ OC.imagePath('core', 'loading-small.gif') +'">';
$(selector)
.html( t('files_encryption', 'Decrypting files... Please wait, this can take some time.') )
.html( t('files_encryption', 'Decrypting files... Please wait, this can take some time.') + ' ' + spinner )
.removeClass('success')
.removeClass('error')
.stop(true, true)
@ -273,8 +274,7 @@ OC.Encryption.msg={
$(selector).html( data.data.message )
.addClass('success')
.stop(true, true)
.delay(3000)
.fadeOut(900);
.delay(3000);
}else{
$(selector).html( data.data.message ).addClass('error');
}