Skip to content
Snippets Groups Projects
Commit d764585d authored by Michael Gapczynski's avatar Michael Gapczynski
Browse files

Remove blind effect for email private link in drop down

parent 6c2fc0cb
Branches
No related tags found
No related merge requests found
...@@ -164,8 +164,8 @@ $(document).ready(function() { ...@@ -164,8 +164,8 @@ $(document).ready(function() {
success: function(){ success: function(){
$('#link').hide('blind'); $('#link').hide('blind');
$('#emailBreak').remove(); $('#emailBreak').remove();
$('#email').hide('blind'); $('#email').hide();
$('#emailButton').hide('blind'); $('#emailButton').hide();
} }
}); });
} }
...@@ -256,7 +256,7 @@ function showPublicLink(token, file) { ...@@ -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').val(parent.location.protocol+'//'+location.host+OC.linkTo('files_sharing','get.php')+'?token='+token+'&f='+file);
$('#link').show('blind', function() { $('#link').show('blind', function() {
$('#link').after('<br id="emailBreak" />'); $('#link').after('<br id="emailBreak" />');
$('#email').show('blind'); $('#email').show();
$('#emailButton').show('blind'); $('#emailButton').show();
}); });
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment