From d764585d8be605067731effb7a114e9349d87598 Mon Sep 17 00:00:00 2001
From: Michael Gapczynski <GapczynskiM@gmail.com>
Date: Wed, 2 May 2012 19:40:11 -0400
Subject: [PATCH] Remove blind effect for email private link in drop down

---
 apps/files_sharing/js/share.js | 8 ++++----
 1 file 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();
 	});
 }
-- 
GitLab