diff options
author | Michael Gapczynski <GapczynskiM@gmail.com> | 2012-05-02 19:40:11 -0400 |
---|---|---|
committer | Michael Gapczynski <GapczynskiM@gmail.com> | 2012-05-05 14:57:25 -0400 |
commit | d764585d8be605067731effb7a114e9349d87598 (patch) | |
tree | 53d56c768b3eef9cdfb76f75e8e6162c0db50834 | |
parent | 6c2fc0cbe853027e265fdf9f1b05b75c5f92c187 (diff) | |
download | nextcloud-server-d764585d8be605067731effb7a114e9349d87598.tar.gz nextcloud-server-d764585d8be605067731effb7a114e9349d87598.zip |
Remove blind effect for email private link in drop down
-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(); }); } |