Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Gapczynski <GapczynskiM@gmail.com>2012-05-03 03:40:11 +0400
committerMichael Gapczynski <GapczynskiM@gmail.com>2012-05-05 22:57:25 +0400
commitd764585d8be605067731effb7a114e9349d87598 (patch)
tree53d56c768b3eef9cdfb76f75e8e6162c0db50834 /apps/files_sharing
parent6c2fc0cbe853027e265fdf9f1b05b75c5f92c187 (diff)
Remove blind effect for email private link in drop down
Diffstat (limited to 'apps/files_sharing')
-rw-r--r--apps/files_sharing/js/share.js8
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();
});
}