diff options
Diffstat (limited to 'apps/files_sharing/js/share.js')
-rw-r--r-- | apps/files_sharing/js/share.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index 4125fd14d25..d9750761fc7 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -164,8 +164,8 @@ $(document).ready(function() { success: function(){ $('#link').hide('blind'); $('#emailBreak').remove(); - $('#email').hide('blind'); - $('#emailButton').hide('blind'); + $('#email').hide(); + $('#emailButton').hide(); } }); } @@ -256,7 +256,7 @@ function showPublicLink(token, file) { $('#link').val(parent.location.protocol+'//'+location.host+OC.linkTo('files_sharing','get.php')+'?token='+token+'&f='+file); $('#link').show('blind', function() { $('#link').after('<br id="emailBreak" />'); - $('#email').show('blind'); - $('#emailButton').show('blind'); + $('#email').show(); + $('#emailButton').show(); }); } |